8
をASP.NETに多くのルーティングを追加しますか?は、私のような1つのマップのルートを持っているMVCのGlobal.asax
をASP.NETに多くのルーティングを追加しますか?は、私のような1つのマップのルートを持っているMVCのGlobal.asax
ちょうど私はあなたが区によってルーティングにthis excellent postを通過示唆別のMapRoute()
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
routes.MapRoute(
"SecondRoute",
"{controller}/{action}/{tags}",
new { controller = "Products", action = "Index", tags = "" }
);
を追加します。