Tuesday 9 August 2016

Area in ASP.NET MVC

Posted by : Manav Pandya
AREA in MVC

What is AREA in MVC ?


In ASP.NET MVC , There is one mechanism in which you can create a System with multiple module within single ASP.NET MVC project .


ASP.Net MVC defines areas, helpful in managing a large application into smaller modules.


A large application say, any e-commerce shopping portal may have different sections
e.g. Men, Women, Electronic portal, billing module, reporting and order tracking module .


These modules can be managed into different areas and routing for each area can be managed differently.

Example:


Below application defines 3 areas

  • BillManagement 
  • Order management and 
  • Men shopping portal.


AREA in ASP.NET MVC