up vote 13 down vote favorite
1
share [g+] share [fb]

Does anyone know how I can add a class to the link rendered using the Html.RouteLink helper method in ASP.Net MVC, it has the htmlAttributes object as the last parameter which I assumed I would be able to use, but since class is obviously a reserved word, I cannot supply this as one of the properties on the object.

link|improve this question

80% accept rate
feedback

2 Answers

up vote 19 down vote accepted

try this

        <%= Html.RouteLink("Default", "Default",null, new { @class="css_class"}) %>
link|improve this answer
feedback

just use uppercase for html attribute, like this:

<%= Html.RouteLink("Default", "Default",null, new { Class="css_class"}) %>

link|improve this answer
Yes that does work, but unfortunately this now means that my html no longer validate as xhtml strict due to the case. Ideally I would like to find a solution which doesn't involve compromising the markup. – Raoul Oct 31 '08 at 11:32
feedback

Your Answer

 
or
required, but never shown

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