将css类名传递给asp.mvc视图助手

时间:2009-10-20 15:09:07

标签: c# asp.net-mvc html-helper object-initializers

在ASP.NET MVC视图助手中,您可以执行类似

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

将生成以下HTML

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

我的问题是......如果我想设置“class”属性怎么办?

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

这不会编译,因为“class”是一个保留字。

有解决办法吗?

1 个答案:

答案 0 :(得分:12)

是的,使用@ literal

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