如何将以下字段设为Readonly ..?
<%: Html.TextBoxFor(x => x.Age, new { value = "0"}) %>
答案 0 :(得分:7)
您可以设置readonly
属性:
<%= Html.TextBoxFor(x => x.Age, new { @readonly = "readonly" }) %>
如果您想要禁用文本框(与用户的readonly相同,但在提交表单时其值不会发送到服务器),您可以使用disabled
属性:
<%= Html.TextBoxFor(x => x.Age, new { disabled = "disabled" }) %>
就设置文本框的默认值而言,我建议您在填充模型时在控制器上执行此操作:
MyViewModel model = ...
model.Age = 0;
return View(model);
答案 1 :(得分:0)
使用以下
<%= Html.TextBoxFor(x => x.Age, new { @readonly = "readonly" }) %>
您可以在调用这样的帮助程序时一次传递多个属性
<%= Html.TextBoxFor(x => x.Age, new { @readonly = "readonly", @class="Text", style="INLINE STYLE" }) %>