You will find it in Views / Home /
Index page
Mvc works through the controller model - model - model
When you create a project by default, you will find that global.asax has the following code:
routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults );
This means that the default page is the index action in the Home controller.
In this example, you can access other pages: If you have an AccountController with the "Login" view, this means that you can access the login page by going to / Account / Login.
source share