ASP.NET MVC如何设置路由启动

怎么设置DeBug的时候直接启动页面




慕尼黑8549860
浏览 618回答 2
2回答

汪汪一只猫

public class MvcApplication : System.Web.HttpApplication{public static void RegisterRoutes(RouteCollection routes){routes.IgnoreRoute(".axd/");routes.MapRoute("xiaohong", // Route name"Home/xiaohong", // URL with parametersnew // Parameter defaults);routes.MapRoute("chenghong", // Route name"Home/chenghong", // URL with parametersnew // Parameter defaults);routes.MapRoute( //注意Default一定要写到最后"Default", // Route name"//", // URL with parametersnew // Parameter defaults);}protected void Application_Start(){AreaRegistration.RegisterAllAreas();RegisterRoutes(RouteTable.Routes);}}

湖上湖

右键你的mvcwebsite项目属性找到WEB一项选择启动URL,输入你要启动的URL就行了,比如/Home/Index或者找你的项目配置文件如MvcWebSite.csproj.user去找 <WebProjectProperties>节点下的<StartPageUrl>节点里面改成你想启动的路径就行了如<StartPageUrl>/Home/Index</StartPageUrl>&nbsp; &nbsp;&nbsp;
打开App,查看更多内容
随时随地看视频慕课网APP