ASP.NET MVC blank page
I have a webpage configured with all the necessary controllers,models,views and a database. However whenever i run the page, all i get is a blank page.I tend to imagine the problem is on my routeConfig.cs but i can;t figure it out. Here it is using System.Web.Mvc; using System.Web.Routing; namespace TOURS { public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( name: "Default", url: "", defaults: new { controller = "Home", action = "index", id = UrlParameter.Optional } ); } } }