码迷,mamicode.com
首页 > 其他好文 > 详细

起始路由改成分区(Areas)的RouteConfig.cs配置方法

时间:2019-08-23 14:55:07      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:control   string   resource   pre   out   namespace   add   orm   map   

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

    routes.MapRoute(
        name: "Default",
        url: "{controller}/{action}/{id}",
        //defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
        defaults: new { controller = "Default", action = "Index", id = UrlParameter.Optional },
        namespaces: new string[] { "ZJ.MVC5.Platform.Areas.Movie" }
        ).DataTokens.Add("Area", "Movie");

}

 

起始路由改成分区(Areas)的RouteConfig.cs配置方法

标签:control   string   resource   pre   out   namespace   add   orm   map   

原文地址:https://www.cnblogs.com/zhuji/p/11399921.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!