使用Html.TextBox添加css类

时间:2010-06-14 14:50:53

标签: asp.net html asp.net-mvc html-helper

尝试添加'class'html属性,但我认为关键字'class'会导致问题。

<%: Html.TextBox("name", "value", new {class: " required "})%>

有解决方法吗?

1 个答案:

答案 0 :(得分:10)

只需在'class'前加上'@',因为它是reserved keyword

<%: Html.TextBox("name", "value", new { @class: " required "})%>

如果您需要@关键字的背景知识,this是一个很好的SO问题。