0

我如何附加到这样的网址

mysite.com/articles/1/my-first-article

具有 div id #commentList 的元素

mysite.com/articles/1/my-first-article#commentList


<%: Html.ActionLink("text", "action", new {/* ??? HOW TO SET IT HERE ??? */})%>
4

1 回答 1

2

尝试使用适当的重载(带片段的重载),这将允许您生成包含片段部分的所需 url:

<%= Html.ActionLink(
    "some text",     // linkText
    "articles",      // actionName
    null,            // controllerName
    null,            // protocol
    null,            // hostName
    "commentList",   // fragment <-- that's what you need
    new { id = 1 },  // routeValues
    null             // htmlAttributes
) %>
于 2011-06-19T22:04:57.847 回答