Sanjay Sharma

Sanjay Sharma

  • 1.2k
  • 409
  • 25.4k

MVC Error - The view 'Index' or its master was not found.

Apr 28 2018 5:30 AM
Why I am geeting an Error
 
The view 'Index' or its master was not found or no view engine supports the searched locations.
 
1. I have added Area 
 
 
 
2. In global.asxa
AreaRegistration.RegisterAllAreas();
3. contoller code
public ActionResult Index()
{
return View();
}
 
4. Route config
 
 
 
what I am missing?

Answers (3)