What is the difference between ASP.NET and ASP.NET MVC?

ASP.NET MVC2 web application is based on MVC pattern in order to facilitate unit test, without mocking pipeline asp.net, because it’s very difficult. you don’t have code on Code Behind in order to separate your code graphic and your code functional.

With MVC your application become independent from view. you can replace easily technology of creating view.

Read this article it’s very interesting : http://msdn.microsoft.com/en-us/magazine/dd942833.aspx

Leave a Comment