编码 :@Html.ActionLink("Link", "Action", "Controller", new { id = Id } )
目前我可以生成这样的链接:
我想生成这样的链接:
但我无法编辑路线/创建另一条路线。
什么是最好的解决方案?
编码 :@Html.ActionLink("Link", "Action", "Controller", new { id = Id } )
目前我可以生成这样的链接:
我想生成这样的链接:
但我无法编辑路线/创建另一条路线。
什么是最好的解决方案?
只需使用proper overload
ActionLink 助手:
@Html.ActionLink(
linkText: "Link",
actionName: "Action",
controllerName: "Controller",
protocol: null,
hostName: null,
fragment: "divId",
routeValues: new { id = Id },
htmlAttributes: null
)
将产生:
<a href="/Controller/Action/123#divId">Link</a>