Click here to Skip to main content
15,867,704 members
Articles / Web Development / ASP.NET
Tip/Trick

Using areas in ASP.NET MVC to organize a project

Rate me:
Please Sign up or sign in to vote.
4.75/5 (10 votes)
3 Jun 2013CPOL1 min read 81.6K   1.6K   18   5
How to organize an ASP.NET MVC project using areas.

Introduction

When we work with ASP.NET MVC, we find some default folders (view, model, controller, and some more), but if the application is big, it is complicated to maintain a structure logic for the files and modules for the site. To solve this problem, ASP.NET MVC provides a powerful feature called areas, with areas it is possible to "isolate" the modules of your site.

Using the code

First step: create a new ASP.NET MVC 4 application, I recommend to use the basic template.

Next step: Over the project name, right click -> Add -> Area, and assign a name to the new area, when the area creation ends, we see a new folder called Areas, and within this folder you can see a folder with the name of your area and some files, think that an area is a mini-MVC project within your principal project.

The next image shows how it looks if you create an area called Reportes:

An important file that is created too, is ReportesAreaRegistration.cs, this file is used to configure the routing system for the area.

C#
public override void RegisterArea(AreaRegistrationContext context)
{
    context.MapRoute(
        "Reportes_default",
        "Reportes/{controller}/{action}/{id}",
        new { action = "Index", id = UrlParameter.Optional }
    );
}

Also, in Global.asax, on the Application_Start method the configuration for the areas is called:

C#
AreaRegistration.RegisterAllAreas();

Now, if you run the application, you received an error that says:

The request for ‘Home’ has found the following matching controllers:
Areas.Areas.Reportes.Controllers.HomeController
Areas.Controllers.HomeController

This error is produced because you have two controllers with the same name, but the solution is easy, go to the function RegisterRoutes of the class RouteConfig and add a namespace:

C#
routes.MapRoute(
    name: "Default",
    url: "{controller}/{action}/{id}",
    defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
    namespaces: new[] { "Areas.Controllers" }
);

I hope this post will be useful for you!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) BDotNet
Colombia Colombia
Microsoft ASP.NET MVP, I love software development, especially web development, I have worked with Microsoft technologies for about five years in the development of large scale enterprise applications, co-creator of several Carreras for the Microsoft Virtual Academy (MVA), speaker at events Microsoft Colombia and member of the Core Group BDotNet community. You can see some of my contributions in http://julitogtu.com/

Comments and Discussions

 
Generalnice quick explanation Pin
Member 1029511527-Sep-13 0:38
Member 1029511527-Sep-13 0:38 
QuestionAreas are a bad move Pin
jphamilton3-Jun-13 6:12
jphamilton3-Jun-13 6:12 
AnswerRe: Areas are a bad move Pin
Member 85284093-Jan-14 9:12
Member 85284093-Jan-14 9:12 
AnswerRe: Areas are a bad move Pin
lukasz.f9-Apr-14 5:43
lukasz.f9-Apr-14 5:43 
GeneralMy vote of 4 Pin
zeego2-Jun-13 23:07
zeego2-Jun-13 23:07 
Nice article. Just the first paragraph needs some grammatical corrections.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.