将原起始页面View中 Index和 Controller中的HomeController删除后报这样的错误,在global.asax设置好路由后
例:
public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Page", action = "Page", id = UrlParameter.Optional }, // Parameter defaults new string[] { "MvcDemo.Controllers" } //Controller的命名空间 ); }
在右键Web项目属性-Web 点选当前页面 保存
错误排除