I have an Html.Actionlink
to which I am trying to add a "class" and an ActiveClass.
<%= Html.ActionLink("Home", "Home", "Account", null,
new {@class ="some-class"},
Html.RenderLinkClassIfActive("Home", "Account", "active")) %>
However, this doesn't work. What can I differently to make this work?