如何定义链接到默认操作的路由。
例如,
/Customer/acme-company
/Client/bill-johnson
始终寻找方法获取控制器客户端和客户。
答案 0 :(得分:8)
使用参数默认值。
routes.MapRoute(
"MyRoute", // Route name
"{controller}/{someParameter}", // URL with parameters
new { controller = "Home", action = "Get" } // Parameter defaults
);
答案 1 :(得分:0)
这样的事情:
routes.MapRoute("Client",
"Client/{name}",
new { controller = "Client", action = "Get", });