ASP.NET MVC framework follows the well-defined MVC pattern to create a web application. MVC design pattern is used to separate the different parts of the application for more scalability, extensibility and testability purposes.
One of the major challenges with normal web forms is the testability of the business logic. Unit test of code-behind logic is very complex. Also, the extensibility of the application required a lot of re-work on the application. ASP.NET MVC addresses the pain points associated with the traditional web form applications.
MVC means Model View Controller. Controller takes care of the overall execution of a request. Controller receives the request from the web server and identifies the data requirements. Depending on the data requirements, Controller contacts the corresponding Model. Model will supply the required data, which will be rendered to the UI using a View.
For more details
http://www.asp.net/mvc/tutorials/getting-started-with-mvc3-part1-cs
http://www.codeproject.com/KB/aspnet/ASPNetMVCAction.aspx
http://www.codeproject.com/KB/aspnet/ASPNetMVCController.aspx
Filed under: ASP.Net, MVC Tagged: ASP.Net, ASP.Net MVC 3 Image may be NSFW.
Clik here to view.

Clik here to view.
