在電流控制器查看/用戶我Html.ActionLink到了位於控制器
grid.Column(format: (item) => Html.ActionLink("Edit", "Edit", new { id = item.UserId }), style: "column-action"),
我有一個像查看另一個視圖/收預訂費
所以我想在網格中添加Html.ActionLink
到了位於控制器
grid.Column(format: (item) => Html.ActionLink("Comission", "Index", "Comission", new { id = item.UserId }), style: "column-action")
但我看到錯誤的URL像
http://localhost:51381/Users?Length=16
,而不是它應該像
http://localhost:51381/Comission/Index/123-sfsdf-2342342-ssdfsdf
任何線索如何解決呢?
基本上,你正在使用Html.ActionLink的錯誤重載:http://stackoverflow.com/questions/2686260/asp-net-mvc-adding-querystring-length-to-actionlinks – 2013-02-27 22:07:17
@QuetiMporta酷!把它像一個答案,請。 – 2013-02-27 22:13:22