我有類似路線的asp.net MVC應用程序:Asp.Net MVC:如何讓Html.ActionLink正確呈現整數值?
routes.MapRoute("Blog",
"{controller}/{action}/{year}/{month}/{day}/{friendlyName}",
new { controller = "Blog", action = "Index", id = "", friendlyName="" },
new { controller = @"[^\.]*",
year = @"\d{4}",
month = @"\d{2}",
day = @"\d{2}" }
);
我控制器操作方法簽名如下所示:
public ActionResult Detail(int year, int month, int day, string friendlyName)
{ // Implementation... }
在我看來,我做類似:
<%= Html.ActionLink<BlogController>(item => item.Detail(blog.PostedOn.Year, blog.PostedOn.Month, blog.PostedOn.Day, blog.Slug), blog.Title) %>
儘管ActionLink生成的URL有效,但它使用查詢字符串變量而不是URL重寫。
例如,它會產生/博客/詳細信息/我的段塞?年= 2008 &月= 7 &天= 5,而不是/博客/細節/ 2008/07/05 /我的段塞
有沒有辦法讓ActionLink的通用版本正確地填充整數值,以便網址按預期發佈?
感謝
吉姆
雖然不是一個最佳的解決方案,但我知道這會起作用 – 2008-09-28 20:18:24