asp.net mvc如何设置起始页
今天给asp.net mvc框架设置
Index.aspx为起始页。
设置后,起始页的路径由http://localhost/Home,变成了http://localhost/Views/Home/
Index.aspx。请问如何才能改回去?
------解决方案--------------------
或者你将
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);
改成其他的
如果
routes.MapRoute(
"Default2", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);