MVC Part 2 - Adding MVC to existing project
Sometimes you want to add MVC functionality into existing project. In order to achieve it you need to do some changes in project file, web config, IIS. I would like to describe minimal changes you have to do for it. After these changes Visual Studio will knows the MVC stuff like models, views and so...
[More]
MVC Basics
The ASP.NET MVC Framework is a web application framework that implements the model-view-controller pattern. Based on ASP.NET, it allows software developers to build a Web application as a composition of three roles: Model, View and Controller. A model represents the state of a particular aspect of t...
[More]