ASP.NET MVC2 Preview 2: Areas and Routes
Posted by: K. Scott Allen,
on 14 Oct 2009 |
View original | Bookmarked: 0 time(s)
In ASP.NET web forms Ive used the sub-web project trick to break apart large web applications. It has some downsides, but generally works. ASP.NET MVC 2 will include built-in support for breaking apart a large MVC application into areas. To quote ScottGu: Areas provide a means of grouping controllers and views to allow building subsections of a large application in relative isolation to other sections. Each area can be implemented as a separate ASP.NET MVC project which can then be referenced...