Skip to main content
Community site session details

Community site session details

Session Id :

Pass html class attribute to html helper in asp.net mvc

Zhongchen Zhou Profile Picture Zhongchen Zhou 681

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.

Comments

*This post is locked for comments