0
我有這些路線:區域路線被忽略?
routes.MapRoute(
"Advertisers",
"advertisers/{controller}/{action}/{id}",
new { controller = "Index", action = "Index", id = UrlParameter.Optional },
new string[] { "Portal.Areas.Advertisers.Controllers" }
);
routes.MapRoute(
"Root", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Index", action = "Index", id = UrlParameter.Optional }, // Parameter defaultsm
new string[] { "Portal.Controllers" }
);
然而,每當我去/廣告/控制器/操作/ ID它不讀取ID參數......我究竟做錯了什麼?
感謝
感謝調試器很好,它似乎讓我做我需要做的事情。 – Darren 2012-02-29 17:23:31
沒問題。這是確保MVC路線建設的最佳工具之一。 – 2012-02-29 18:44:36