InterviewSolution
Saved Bookmarks
| 1. |
How we can register the Area in ASP.Net MVC? |
|
Answer» When we have created an area make sure this will be registered in "Application_Start" event in Global.asax. Below is the code snippet where area registration is done : protected void Application_Start(){AreaRegistration.RegisterAllAreas();}
|
|