码迷,mamicode.com
首页 > Web开发 > 详细

MVC路由约束

时间:2014-09-26 12:59:48      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   sp   div   cti   on   

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

            routes.MapRoute(
               name: "Details",
               url: "{controller}/{action}/{id}/{t}",
               defaults: new { action = "Details" },
               constraints: new { id = @"\d+", t = @"\d+" }    //路由约束   用于约束id和t为0到多个数字组成,当id或t为非数字时,会跳过这个路由,而尝试由下一个路由来匹配。
               );

            routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}",
                defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
            );
        }

 

MVC路由约束

标签:style   blog   color   io   ar   sp   div   cti   on   

原文地址:http://www.cnblogs.com/qk2014/p/3994394.html

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