Archives
-
ASP.NET MVC Case Studies
The below are some of the case studies of ASP.NET MVC
-
Installing ASP.NET MVC 2 RTM on Visual Studio 2010 RC
Visual Studio 2010 RC is built against the ASP.NET MVC 2 RC version but you can easily install ASP.NET MVC 2 RTM on the Visual Studio 2010 RC. For installing ASP.NET MVC 2 RTM, do the following steps
-
ASP.NET MVC 2 RTM Released !
ASP.NET MVC 2 Framework has reached RTM version. You can download the ASP.NET MVC 2 RTM from here. There is not any new breaking changes were introduced by the ASP.NET MVC 2 RTM release.
-
Persisting model state in ASP.NET MVC using Serialize HTMLHelper
ASP.NET MVC 2 futures assembly provides a HTML helper method Serialize that can be use for persisting your model object. The Serialize helper method will serialize the model object and will persist it in a hidden field in the HTML form. The Serialize helper is very useful when situations like you are making multi-step wizard where a single model class is using for all steps in the wizard. For each step you want to retain the model object's whole state.