6
Reply

Why we need "Areas" in MVC?

Arunava Bhattacharjee

Arunava Bhattacharjee

Sep 24, 2014
4.2k
0

    For large application where we need to have many controllers and associated views it is a good practice to organize the controller and views by creating Area.

    Arunava Bhattacharjee
    September 24, 2014
    2

    Area is a MVC folder. You can add multiple area in one project. Each area can have: model, view and controller

    Madhuri Mishra
    May 04, 2015
    1

    In a large Application handling is very easy

    Shailesh Uke
    May 27, 2015
    0

    Areas Provides the Logical separation of the Model, View and Controller components. For example, we may have individual area for each module in the application.

    Raghu Kasyap
    April 22, 2015
    0

    Areas are logical grouping of Controller, Models and Views and other related folders for a module in MVC applications. By convention, a top Areas folder can contain multiple areas. Using areas, we can write more maintainable code for an application cleanly separated according to the modules.

    Kml Surani
    April 15, 2015
    0

    http://stackoverflow.com/questions/9235030/when-we-use-areas-where-routing-should-be-placed-asp-mvc

    Munesh Sharma
    October 01, 2014
    0