Browse by Tags

Experiences upgrading an MVC 1 application to MVC 3
Wed, Sep 5 2012 10:16
I have recently had to do some work on a MVC 1 application and thought it sensible to bring it up to MVC 3, you don’t want to be left behind if you can avoid it. This was a simple data capture application written in MVC1 in Visual Studio 2008 and never needed to be touched since. A user fills in a form, the controller then takes the form contents and stores it... Read More...
Testing access attributes on the Microsoft MVC framework
Fri, May 1 2009 3:56
The MVC framework provides an excellent way to create a testable web site. In fact when you create a new MVC project you are given the option to create an associated test project that contains MSTEST unit tests for all the sample methods in the MVC Controller class; which you can add to as you go along. Recently whilst working on an MVC project I noticed that... Read More...