是否可以使用文本框成功的验证来修改另一个文本框的值?

时间:2019-11-29 15:19:44

标签: c# asp.net asp.net-mvc dom razor

我正在学习使用剃刀创建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" } })

0 个答案:

没有答案