博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MVC自定义路由的配置,必须把自己的路由写在前面
阅读量:6619 次
发布时间:2019-06-25

本文共 824 字,大约阅读时间需要 2 分钟。

MVC路由的选择是从上向下去找到,当找到满足条件的路由后会自动跳出.

namespace OA { // Note: For instructions on enabling IIS6 or IIS7 classic mode, // visit http://go.microsoft.com/?LinkId=9394801public class MvcApplication : System.Web.HttpApplication { public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( "dept", // Route name "dept/{id}", // URL with parameters new { controller = "department", action = "Index", id = "" } // Parameter defaults ); routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = "" } // Parameter defaults ); } protected void Application_Start() { AreaRegistration.RegisterAllAreas(); RegisterRoutes(RouteTable.Routes); } } }

本文转自博客园张占岭(仓储大叔)的博客,原文链接:,如需转载请自行联系原博主。

你可能感兴趣的文章
详解C语言指针与常量的关系
查看>>
Sequelize 4.42.1 发布,基于 Nodejs 的异步 ORM 框架
查看>>
Android开发的七大环节
查看>>
国务院通过“十三五”国家信息化规划
查看>>
Maven单独构建多模块项目中的单个模块
查看>>
Spring Boot项目@RestController使用重定向redirect
查看>>
【量子万象】植物不可怕 就怕植物懂量子力学
查看>>
商城产品如何应对多个客户不同的需求修改并发布对应客户的文件
查看>>
html复选框的全选和全不选
查看>>
SecureCRT双击Tab快速复制Session
查看>>
Spring注入内部的Beans
查看>>
量子纠缠现象是什么
查看>>
Ubuntu 16.04下MySQL 5.7.18取消开机启动(解决无法使用Sysvinit(update-rc.d/sysv-rc-conf)脚本关闭)...
查看>>
阿里:千亿交易背后的0故障发布
查看>>
【深度森林第三弹】周志华等提出梯度提升决策树再胜DNN
查看>>
Splunk推出Splunk Insights for AWS Cloud Monitoring
查看>>
mysql 的 find_in_set函数使用方法
查看>>
vb实现查询sql
查看>>
落地蓉城 2017中国软件生态大会带来云商机
查看>>
AES加密算法动画演示
查看>>