标签: .net asp.net-mvc razor
我试过了:
@Html.TextBoxFor(m => m.UserName, new {@class='textbox'})
无效。
答案 0 :(得分:65)
@Html.TextBoxFor(m => m.UserName, new {@class="textbox"})
c#string literal不带单引号。
'textbox' - > “文本框”