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();

}

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();

}



Discussion

No Comment Found