MVC (Model-View-Controller) now comes to ASP.NET too. As Scott Gu says "If you are looking to build your web applications using a MVC approach, I think you'll find this new ASP.NET MVC Framework option very clean and easy to use. It will enable you to easily maintain separation of concerns in your applications, as well as facilitate clean testing and TDD." Scott has written a series of blog posts on this new addition to the ASP.NET family. Read them:
Again, MVC model is only an additional model/approach to develop ASP.NET applications and not a replacement for the existing rendering ASP.NET framework.
The ASP.NET MVC Toolkit is currently provided as part of the ASP.NET 3.5 Extensions Preview: http://www.asp.net/downloads/3.5-extensions/
5 March 2008, at Mix08, CTP #2 was released:
The readme includes details of the extensive API changes and how to update existing (CTP #1) projects.
Also a number of issues have been identified in the ASP.NET forum:
Revision number 3, Saturday, February 16, 2008 9:34:59 AM by rjcox
You must Login to comment.
|
Thu, Feb 21, 2008 7:33 AM
by s_kushal
|
Dose any body have any example for a real world application of the MVC framework ??
|
Revision #3
Wed, Feb 27, 2008 5:30 PM
by
|
MVP Pattern
MVP (Model View Presenter)Framework The MVP pattern is an Architecture Pattern used to build ASP.net applications. It refers to splitting up the responsibilities for gathering, displaying, and storing data from a web page into separate objects: a Model object
|