A question that often comes up is how do you group controllers when building a large application with ASP.NET MVC . Often, the question is phrased as whether or not ASP.NET MVC supports ?Areas?, a feature of Monorail . According to the Monorail documentation , MonoRail supports the concept of areas, which are logical groups of controllers. All controllers belong to an area. The default area is an empty (unnamed) one While there?s no out of the box support for this in ASP.NET MVC, the extensibility model allows building something pretty close. I thought I would spend a few hours one morning trying to come up with a prototype of this . The funny part with things like this is that I?ve probably spent as much time writing this blog post as I did...(read more) ...
Go to the complete details ...