@ Html.EditorFor辅助类没有添加

时间:2016-10-06 07:06:35

标签: asp.net-mvc-4

我正在研究MVC4应用程序,因为我正在使用@ Html.EditorFor helper helper是可行的但是没有为该输入框添加类。我正在尝试这种方式

@Html.EditorFor(m => m.StartTime, new { htmlAttributes = new { @class = "form-control" } })

也是这样,

@Html.EditorFor(m => m.StartTime, new { Style:"Color:green;" })

1 个答案:

答案 0 :(得分:1)

不要使用@ Html.EditorFor,而是必须使用@ Html.TextBoxFor来提供css类。

例如:

@Html.TextBoxFor(x => x.StartTime, new { @class = "form-control",@style="Color:green;" })

祝你好运

相关问题