我想做的事情做在MVC幾個地圖路由都喜歡相同。
註冊在MVC asp.net多途徑
本地主機:1010/ABCD /家/索引
本地主機:1010 /家庭/索引/ ABCD
ID = ABCD控制器=家行動=指數
我用波紋管的代碼,但它不」 t工作
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"ShoppingManagment",
"{id}/{controller}/{action}",
new { controller = "ShoppingManagment",
action = "ShoppingManagment", id = UrlParameter.Optional });
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home",
action = "Index", id = UrlParameter.Optional }
);
}
你想要這些路線匹配多個控制器或只是ShoppingManagement嗎?你的問題是,目前這兩個路由定義是相同的 - string/string/string,所以它們都會被頂層路由拾取。 – Richard 2013-04-22 05:29:30