I'm trying to use Html.RouteLink within a view to generate a link to a named anchor on another page. There's a few definitions for RouteLink that include a fragment option but I'm trying to figure out if there's another way.

public static string RouteLink(
    this HtmlHelper htmlHelper,
    string linkText,
    string routeName,
    string protocol,
    string hostName,
    string fragment,
    Object routeValues,
    Object htmlAttributes
)

is the obvious solution, but kind of clunky seeming. I'd prefer to be able to do something like

Html.RouteLink("Looga", new { Controller = "Cooga", Action = "Aooga", Fragment = "Fooga" })

and have that return

<a href="/Cooga/Aooga#Fooga">Looga</a>

Is that possible or will I need to specify every little part of the URL to get fragment using the built-in helpers. I could also just do it manually like

<a href="<%= Url.RouteUrl(new { Controller = "Cooga", Action = "Aooga" }) %>#Fooga>Looga</a>

but it seems like something RouteLink should be able to handle more elegantly.

link|improve this question

57% accept rate
How come accepting the fragment as a parameter is not elegant? – çağdaş Feb 19 '10 at 9:12
Having to define protocol & hostname just so I can append a fragment seems silly. I was hoping there was a better way. – Tivac Feb 19 '10 at 22:07
feedback

1 Answer

up vote 1 down vote accepted

Edited to take account of main post edits

Html.RouteLink( "Looga",
new { Controller = "Cooga", Action = "Aooga" }, new { Fragment = "Fooga" })

This code will current produce

<a href="/Cooga/Aooga" Fragment="Fooga">Looga</a>

Not really what you want. Instead, you could write your own extension method for RouteLink, something like this...

public static class RouteLinkExtensions
{
    public static string RouteLink( 
        this HtmlHelper htmlHelper, 
        string linkText, 
        object routeValues, 
        string fragment)
    {
        // There's probably better ways to do the implementation, but you get the idea
        var url = new UrlHelper(htmlHelper.ViewContext.RequestContext);
        return string.Format("<a href=\"{0}#{1}>{2}</a>",
                                url.RouteUrl(routeValues), 
                                fragment,
                                linkText); 
    }
}

This will allow you to use a clean call to RouteLink in your page :-)

Html.RouteLink( 
    "Looga",  
    new { Controller = "Cooga", Action = "Aooga" }, 
    "Fooga")
link|improve this answer
That's probably what I'll end up doing. Sorry about the janky example, I wasn't paying enough attention. Fixed now. – Tivac Feb 19 '10 at 0:25
feedback

Your Answer

 
or
required, but never shown

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