The View Index Or Its Master Was Not Found

For More Videos Visit Our YouTube Channel




The View Index Or Its Master Was Not Found, No View Engine Supports The Searched Locations, The Following Locations Were Searched, Asp.Net MVC, MVC Error, Start Asp.Net MVC, Asp.Net

You will get this error in the following situation. On your Asp.Net MVC Application, the View Corresponding to the ActionResult is not available. It can be a View or Layout that is missing corresponding to the ActionResult.

For example, On Home Controller for the AtionResult Index, the View is missing. Now if we call the Home/Index on the browser, you will get this error. The main reason is that the View is absent Corresponding to the ActionResult.



Just add the missing View or Layout for resolving this issue. Here on Home Controller, Right Click on the Index ActionResult and select Add View. The particular View will be added for the Actionresult Index. Now if we call Home/index on browser, you will not get the Issue.