我正在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>
谢谢
答案 0 :(得分:1)
您需要在模型或html中设置required
。
因为程序仅在您将字母写在期望数字的框中时警告您。
希望获得帮助
狮子座