asp.net mvc 设置启动页面在区域中
Posted 众里寻Ta千百度 ^_^
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp.net mvc 设置启动页面在区域中相关的知识,希望对你有一定的参考价值。
在开发过程中,我们有时候需要启动区域中的页面为起始页面,那我们就需要子啊路由中添加一段代码
如何完整案例:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Personnal", action = "Index", id = UrlParameter.Optional }
).DataTokens.Add("Area", "PseronnalMenanger");
}
以上是关于asp.net mvc 设置启动页面在区域中的主要内容,如果未能解决你的问题,请参考以下文章
ASP.NET MVC - 在基本控制器中为母版页设置 ViewData