我正在学习使用剃刀创建Web应用程序。
我想修改以下代码
<div class="form-group">
@Html.LabelFor(model => model.foo, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.foo, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.foo, "", new { @class = "text-danger" })
</div>
</div>
因此,不仅显示错误,还可以在值有效的情况下执行操作,我还使用以下范围验证器
[Range(5000000, 50000000)]
如果范围验证器成功,我希望能够更改以下模型的文本。
@Html.EditorFor(model => model.foofoo, new { htmlAttributes = new { disabled = "disabled", @class = "form-control" } })