使用数据验证后保存空值

时间:2019-02-18 12:57:37

标签: asp.net asp.net-mvc

我正在asp.net中工作,但是却遇到了验证不起作用的问题...请帮助我解决这个问题。

<div class="form-group">
        @Html.LabelFor(model => model.FirstName, htmlAttributes: new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.EditorFor(model => model.FirstName, new { htmlAttributes = new { @class = "form-control" } })
            @Html.ValidationMessageFor(model => model.FirstName, "", new { @class = "text-danger" })
        </div>
    </div>

谢谢

1 个答案:

答案 0 :(得分:1)

您需要在模型或html中设置required

因为程序仅在您将字母写在期望数字的框中时警告您。

希望获得帮助

狮子座