Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In ASP.NET MVC, I'm trying to create a link that includes an anchor tag (i.e., directing the user to a page, and a specific section of the page).

The URL I am trying to create should look like the following:

<a href="/category/subcategory/1#section12">Title for a section on the page</a>

My routing is set up with the standard:

routes.MapRoute("Default", "{controller}/{action}/{categoryid}");

The action link syntax that I am using is:

<%foreach (Category parent in ViewData.Model) { %>
<h3><%=parent.Name %></h3>
<ul>
<%foreach (Category child in parent.SubCategories) { %>
    <li><%=Html.ActionLink<CategoryController>(x => x.Subcategory(parent.ID), child.Name) %></li>
<%} %>
</ul>
<%} %>

My controller method is as follows:

public ActionResult Subcategory(int categoryID)
{
   //return itemList

   return View(itemList);
}

The above correctly returns a URL as follows:

<a href="/category/subcategory/1">Title for a section on the page</a>

What I can't figure out is how to add the #section12 part. The "section" word is just the convention I am using to break up the page sections, and the 12 is the ID of the subcategory, i.e., child.ID.

Any help is appreciated.

share|improve this question

3 Answers

up vote 32 down vote accepted

I would probably build the link manually, like this:

<a href="<%=Url.Action("Subcategory", "Category", new { categoryID = parent.ID }) %>#section12">link text</a>
share|improve this answer
7  
Should really use the overloads for ActionLink as described by @Brad Wilson. – mattruma Feb 20 '10 at 13:40
4  
@mattruma sorry I disagree. KISS. Why have a member full of parameters , some of which are left as null, when you can simply state it explicitly. Anyone can see what the above means whereby Brad's response is convoluted and requires you to dig into intellisense. Too many parameters is a recognised anti pattern..c2.com/cgi/wiki?TooManyParameters – Ed Blackburn Feb 1 '12 at 14:51
2  
I agree. Both methods work, but since the way fragments are specified in URLs isn't going to change in the near future, I think this way is actually more readable and clearer in its intent. If needed, you can still extend the Url or Html object with a custom method which includes a simple way to add a fragment string. – LorenzCK Feb 3 '12 at 14:03

There are overloads of ActionLink which take a fragment parameter. Passing "section12" as your fragment will get you the behavior you're after.

For example, calling LinkExtensions.ActionLink Method (HtmlHelper, String, String, String, String, String, String, Object, Object):

<%= Html.ActionLink("Link Text", "Action", "Controller", null, null, "section12-the-anchor", new { categoryid = "blah"}, null) %>
share|improve this answer
Are these overloads part of an extensions library? I don't seem to get them. – grenade Sep 18 '09 at 13:12
There are two: public static string ActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName, string protocol, string hostName, string fragment, object routeValues, object htmlAttributes); public static string ActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName, string protocol, string hostName, string fragment, RouteValueDictionary routeValues, IDictionary<string, object> htmlAttributes); – Brad Wilson Sep 26 '09 at 16:26
5  
+1 This is definitely the better way. – mattruma Feb 20 '10 at 13:39
3  
This should be the answer. – Rubens Mariuzzo Dec 3 '12 at 14:11
The overloads of Html.ActionLink that allow specification of an anchor by passing the fragment, force you to pass the controller by name. I don't like that. If the controller name is incorrect, run-time exceptions will occur, rather than a compile errors. – R. Schreurs Jan 25 at 12:26
show 2 more comments

My solution will work if you apply the ActionFilter to the Subcategory action method, as long as you always want to redirect the user to the same bookmark:

http://spikehd.blogspot.com/2012/01/mvc3-redirect-action-to-html-bookmark.html

It modifies the HTML buffer and outputs a small piece of javascript to instruct the browser to append the bookmark.

You could modify the javascript to manually scroll, instead of using a bookmark in the URL, of course!

Hope it helps :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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