当前位置: 代码迷 >> ASP.NET >> asp.net mvc 中 Html.EditorFor 怎么添加 htmlattribute 属性 小弟我想把 @Html.EditorFor(model
  详细解决方案

asp.net mvc 中 Html.EditorFor 怎么添加 htmlattribute 属性 小弟我想把 @Html.EditorFor(model

热度:8512   发布时间:2013-02-25 00:00:00.0
asp.net mvc 中 Html.EditorFor 如何添加 htmlattribute 属性 我想把 @Html.EditorFor(model
asp.net mvc 中 Html.EditorFor 如何添加 htmlattribute 属性

我想把 @Html.EditorFor(model => model.Email) 在页面上生成只读的.就是添加:readonly="readonly"的html属性啊.

------解决方案--------------------------------------------------------
C# code
<%= Html.TextBoxFor(model => model.Property, new { disabled="disabled", @readonly = "readonly" })%>
------解决方案--------------------------------------------------------
探讨

C# code
<%= Html.TextBoxFor(model => model.Property, new { disabled="disabled", @readonly = "readonly" })%>

------解决方案--------------------------------------------------------
@foreach(Person p in Model)
 {
@Html.TextBox("PersonName", p.Name, new { @readonly="readonly"})
 }
------解决方案--------------------------------------------------------
探讨

引用:

引用:

C# code
<%= Html.TextBoxFor(model => model.Property, new { disabled="disabled", @readonly = "readonly" })%>
在MVC中是这样的


Html.EditorFor 可以这么使用么?
  相关解决方案