routes.MapRoute()定义路由的要求


MapRoute(

  string name,   名称

  string url,URL  模式

  object defaults,  默认值

  object constraints,  约束(用正则表达式)

  string[] namespaces    命名空间

如果一个URL能够在多个路由中匹配,则默认使用第一个匹配的路由

              routes.MapRoute(
                     name: "Test5",
                     url: "{year}/{month}/{day}/Details.aspx",
                     defaults: new { controller = "Work", action = "Index", id = UrlParameter.Optional },
                     constraints:new {year=@"\d{4}",month=@"\d{4}",day=@"\d{2}"}
            );

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM