1
vote
1answer
79 views
passing css class name to asp.mvc view helper
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 …
