How to call controllers in external assemblies in an ASP.NET MVC application
Posted by: Code Climber,
on 14 Nov 2008 |
View original | Bookmarked: 0 time(s)
If your ASP.NET MVC is growing large, its likely that you are partitioning your controllers in different namespaces, or maybe even in different assemblies, and it might happen that you have controllers with the same in different namespaces.
Phil Haack and Steve Sanderson wrote some great write-ups on how to partition an ASP.NET application down into Areas, a concept that exists in MonoRail but not in the core ASP.NET MVC framework. The two posts above allow grouping both the controllers and the views,...