Overview
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.
Releases
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.
May 27, 2008: CTP3 is released
Known Issues
Also a number of issues have been identified in the ASP.NET forum:
Revision number 4, Friday, May 30, 2008 1:02:36 PM by
This is not the most up to date version of this article. The most recent version can be found here.
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 ??
|
|
Sat, Jun 7, 2008 6:05 AM
by scott@elbandit.co.uk
|
see http://blog.wekeroad.com/mvc-storefront/
|
|
Mon, Jun 9, 2008 5:46 PM
by dhounshell
|
The Lounge - an ad network run by James Avery was recently updated to use ASP.NET MVC. You can check out his blog post here: http://infozerk.com/averyblog/new-lounge-front-end-now-with-asp-net-mvc-and-nhaml/ and the site here: http://infozerk.com/thelounge/
|
Revision #23
Mon, Oct 6, 2008 10:17 PM
by
|
ASP.NET Open Source Projects
Links to ASP.NET Open Source Projects Blogs dasBlog BlogEngine.NET SubText- A blogging engine in ASP.NET Content Management Systems DotNetNuke N2CMS Umbraco sharpcms Controls/Toolkits/Frameworks AJAX Control Toolkit- A control library for ASP.NET built over
|
Revision #4
Wed, Jun 11, 2008 8:33 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
|
New
Thu, Oct 2, 2008 9:04 PM
by
|
Observer Pattern
The observer design pattern defines a one to many dependency between an object and its dependents. The dependency is created in order to inform the dependents that the object changed its state and therefore the dependents can react to the change. A very good
|