我的asp.net mvc Web应用程序中有以下
内容:
<div><span class="f">Data Center Name</span> @Html.EditorFor(model => model.Switch.TMSRack.DataCenter.Name,new { disabled = "disabled" })</div>
但现场不会被禁用,任何人都可以请求吗?
谢谢
@ Html.EditorFor()没有重载来
支持htmlAttributes。你可以试试@ Html.Text
BoxFor()
@Html.TextBoxFor(model => model.propertyName,new {disabled= "disabled" })
如果您正在使用htmlAttributes中的类的系统关键词,请在属性名称之前添加@。
例如:
@Html.TextBoxFor(model => model.propertyName,new {@class = "disabledClass" })
原文链接:https://www.f2er.com/aspnet/252723.html