我在我的应用程序中使用 Telerik MVC 网格,尝试使用以下命令打开视图:
columns.Template(item => Html.Raw("<a href=\"" + Url.Action("Action", "Controller", new { id = item.ID}) + "\">" + item.Name + "</a>")).Title("Go").Width(300);
我得到的网址是:
http://localhost:xxx/Controller/Action/54
但是,视图显示正常,但它不能正常运行,url 应该是:
http://localhost:xxx/Controller/Action?id=54
我会很感激你的建议。提前致谢。