3
Answers

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

Photo of Sanjay Sharma

Sanjay Sharma

7y
3.7k
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)