vote up 0 vote down star

In ASP.NET MVC view helper, you can do something like

<%= Html.ActionLink("click me", "DoSomething", null, new { someAttribute = "a value" } )  %>

which will produce the following HTML

<a href="DoSomething" someAttribute="a value">click me</a>

My question is.... what if I want to set the "class" attribute?

<%= Html.ActionLink("click me", "DoSomething", null, new { class = "a-class-name" } )  %>

That won't compile because "class" is a reserved word.

Is there a work-around?

flag

1 Answer

vote up 9 vote down check

Yes, using the @ literal:

<%= Html.ActionLink("click me", "DoSomething", null, 
    new { @class = "a-class-name" } )  %>
link|flag

Your Answer

Get an OpenID
or

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