Pass html class attribute to html helper in asp.net mvc
Scenario
I want to assign css class name to a link rendered by Html.ActionLink html helper method
When i use class as a property of anonymous type to pass the value, I got compile exception as class is reserved key word in c#.
@Html.ActionLink("All", "Index", "Company", new { area = "Customer" }, new { class = "index" })
Solution
@class, use @ symbol to prefix class property name
@Html.ActionLink("All", "Index", "Company", new { area = "Customer" }, new { @class = "index" })
Filed under: ASP.NET MVC Tagged: ASP.NET MVC

This was originally posted here.
*This post is locked for comments