在我拥有的当前控制器视图/用户中
grid.Column(format: (item) => Html.ActionLink("Edit", "Edit", new { id = item.UserId }), style: "column-action"),
我有另一种观点,例如Views/Commissions
所以我想在网格上添加Html.ActionLink
到上定位的控制器
grid.Column(format: (item) => Html.ActionLink("Comission", "Index", "Comission", new { id = item.UserId }), style: "column-action")
但我看到了错误的网址,例如
http://localhost:51381/Users?Length=16
而不是应该像
http://localhost:51381/Comission/Index/123-sfsdf-2342342-ssdfsdf
任何线索如何解决它?