How do i append to an url like this

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

the element with the div id #commentList

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


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

feedback

1 Answer

up vote 2 down vote accepted

Try using the proper overload (the one that takes a fragment) which will allow you to generate the desired url containing a fragment portion:

<%= 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
) %>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.