2011-09-13 7 views

答えて

8

ちょうど私はあなたが区によってルーティングに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 = "" } 
); 

を追加します。

関連する問題