3
Answers

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

Sanjay Sharma

Sanjay Sharma

6y
3.6k
1
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)