MVC Developer Question:

Explain me what is Areas in MVC?

Tweet Share WhatsApp

Answer:

From ASP.Net MVC 2.0 Microsoft provided a new feature in MVC applications, Areas. Areas are just a way to divide or “isolate” the modules of large applications in multiple or separated MVC. like:

When you add an area to a project, a route for the area is defined in an AreaRegistration file. The route sends requests to the area based on the request URL. To register routes for areas, you add code to the Global.asax file that can automatically find the area routes in the AreaRegistration file.

Download MVC Developer PDF Read All 50 MVC Developer Questions
Previous QuestionNext Question
Tell me what is the greatest advantage of using asp.net mvc over asp.net webforms?Tell us what is Route in MVC? What is Default Route in MVC?