Stories recently tagged with 'ASPNETMVC'

Free Continuous Integration Toolkit(web2asp.net)

submitted by sedgeysedgey(1728) 1 year, 3 months ago

continuous integration (CI) implements continuous processes of applying quality control - small pieces of effort, applied frequently. Continuous integration aims to improve the quality of software, and to reduce the time taken to deliver it, by replacing the traditional practice of applying quality control after completing all development. My personal definition is: “Giving a damn that the code you write is not breaking the app considering that other developers are working on the code base at the same time and realizing that you are not infallible.” read more...

1 comment |category: |Views: 537

tags: another

ScottGu: Introducing “Razor” – a new view engine for ASP.NET(weblogs.asp.net)

submitted by JemmJemm(9604) 1 year, 7 months ago

"ASP.NET MVC has always supported the concept of “view engines” – which are the pluggable modules that implement different template syntax options. The “default” view engine for ASP.NET MVC today uses the same .aspx/.ascx/.master file templates as ASP.NET Web Forms. Other popular ASP.NET MVC view engines used today include Spark and NHaml. The new view-engine option we’ve been working on is optimized around HTML generation using a code-focused templating approach. The codename for this new view engine is “Razor”, and we’ll be shipping the first public beta of it shortly." read more...

add a comment |category: |Views: 549

tags: another

Multi-tenant ASP.NET MVC – Introduction(weblogs.asp.net)

submitted by zowenszowens(988) 1 year, 8 months ago

In this first post, I discuss what multi-tenancy means and how my implementation will be structured for use in ASP.NET MVC. Multi-tenancy is a technique used by many developers to increase IIS efficiency and reuse code. This is an introduction into some of the core elements of multi-tenancy and how to use multi-tenancy in ASP.NET MVC. read more...

add a comment |category: |Views: 264

tags: another

How to use Google Data API in ASP.NET MVC. Part 2 - YouTube(mahdi.mp)

submitted by sharplifesharplife(4560) 1 year, 8 months ago

In this second part of my GData series I tried to explain how to use YouTube API for .NET to store/retrieve videos on/from YouTube. read more...

add a comment |category: |Views: 302

tags: another

ScottGu: April 30th Links: ASP.NET, ASP.NET MVC, Visual Studio 2010(weblogs.asp.net)

submitted by JemmJemm(9604) 1 year, 9 months ago

Good collection of ASP.NET, ASP.NET MVC and Visual Studio 2010 -related links. read more...

add a comment |category: |Views: 44

tags: another

Building a MVC2 Template, Part 5, Writing Specs(erictopia.com)

submitted by 37Stars37Stars(60) 1 year, 9 months ago

In our last installment we converted the default tests to specifications for the Home and Account controllers. In this article we will be adding some meat to those specifications. There are several good articles on the net about writing your specs. I stumbled across a couple more while preparing for this article. A reference list of all articles used in this post can be found at the end of the article. read more...

add a comment |category: |Views: 45

tags: another

How to use Google Data API in ASP.NET MVC. Part 1 - Google Analytics(mahdi.mp)

submitted by sharplifesharplife(4560) 1 year, 9 months ago

This article shows you how to use Google Data API to interact with Google Analytics data and show your website's visitors statistics on your website. read more...

add a comment |category: |Views: 356

tags: another

MVC Portable Areas – Static Files as Embedded Resources(geekswithblogs.net)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 10 months ago

This is the third post in a series related to build and deployment considerations as I’ve been exploring MVC Portable Areas. In the last post, I walked through a convention for managing static files. In this post I’ll discuss another approach to manage static files (e.g., images, css, js, etc.). With this approach, you *also* compile the static files as embedded resources into the assembly similar to the *.aspx pages. Once again, you can set this to happen automatically by simply modifying your *.csproj file to include the desired extensions so you don’t have to remember every time you add a file: read more...

add a comment |category: |Views: 119

tags: another

ReSharper 5(web2asp.net)

submitted by winphone7serieswinphone7series(115) 1 year, 10 months ago

With the release of Visual Studio 2010 just around the corner and the concurrent release of ReSharper 5, I thought I would share my experiences with the Release Canidate & nightly builds of ReSharper 5. read more...

1 comment |category: |Views: 686

tags: another

ASP.NET MVC 2 Localization complete guide(adamyan.blogspot.com)

submitted by Alik.AdamyanAlik.Adamyan(135) 1 year, 11 months ago

This is a full guide for localizing asp.net mvc 2 web application covering following aspects: views localization, simple culture switching mechanism, model validation messages localization, DisplayName attribute localization and problem solving with caching(OutputCache) and localization. read more...

add a comment |category: |Views: 2393

tags: another

KiGG Design And Architecture – Part 4 Inside Infrastructure(mosesofegypt.net)

submitted by mosessaurmosessaur(5424) 2 years ago

This is part 4 of this series which I don’t know when it will ends :o). In part 3 I started to to explore the Core of KiGG. In this part we are still inside the core, but we are going further deep to have a look inside the infrastructure. I’m going to talk about infrastructure for the next couple of posts or maybe more. Because actually it contains the heart of KiGG. read more...

add a comment |category: |Views: 23

tags: another

ScottGu: ASP.NET MVC 2: Model Validation(weblogs.asp.net)

submitted by JemmJemm(9604) 2 years ago

"Validating user-input and enforcing business rules/logic is a core requirement of most web applications. ASP.NET MVC 2 includes a bunch of new features that make validating user input and enforcing validation logic on models/viewmodels significantly easier. These features are designed so that the validation logic is always enforced on the server, and can optionally also be enforced on the client via JavaScript" read more...

4 comments |category: |Views: 626

tags: another

ASP.NET MVC 2 - ScottGu's Blog(weblogs.asp.net)

submitted by johnrummelljohnrummell(1296) 2 years ago

Over the last six months the ASP.NET team has been steadily releasing preview, then beta, and now release candidate builds of ASP.NET MVC 2. Given that the final release is not too far away, I thought it was a good time to start a new multi-part ASP.NET MVC 2 blog series that discusses the new features and how best to take advantage of them. read more...

5 comments |category: |Views: 440

tags: another

Ordering fields in ASP.NET MVC 2 templated helpers(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 2 years ago

Ever worked with the templated helpers provided by ASP.NET MVC 2? Templated helpers provide a way to automatically build UI based on a data model that is marked with attributes defined in the System.ComponentModel.DataAnnotations namespace. For example, a property in the model can be decorated with the attribute [DisplayFormat(DataFormatString = "{0:c}")], and the templated helpers will always render this field formatted as currency. If you have worked with templated helpers, you must agree: they can be useful! There’s one thing which is impossible in the current version: ordering fields. And that's what this post will accomplish. read more...

2 comments |category: |Views: 158

tags: another

Vote to help me speak at the MIX 2010 conference!(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 2 years, 1 month ago

Everybody knows the Microsoft MIX event, right? The one in Las Vegas? The one with all the fancy web-related stuff? Rings a bell? Ok, great. In the beginning of December 2009, Microsoft did an open call for speakers, which I answered with some session proposals. Who doesn’t want to go to Vegas, right? The open call proposals have been processed (150+ sessions submitted, wow!) and a voting has started. Go ahead and vote on your favourite sessions! There's also Elijah Manor, Justin Etheredge, K. Scott Allen, and many others who submitted good looking sessions. read more...

add a comment |category: |Views: 1

tags: another

Exposing the View Model to JavaScript in ASP.NET MVC(trycatchfail.com)

submitted by Matt_TCFMatt_TCF(836) 2 years, 1 month ago

View models make it easy to move data between your views and controllers in a strongly-typed manner, but what's the best way to leverage the view model from JavaScript? This post looks at some of the alternatives and presents a clean, simple way to convert the view model to an equivalent JavaScript object by using JSON on the master page. read more...

add a comment |category: |Views: 319

tags: another