我有一个带有ID名称的文本框。 查看:
<div class="form-group">
<div class="col-md-6 control-label">
@Html.LabelFor(m => m.Name, htmlAttributes: new { @class = "" })
<i class="required">*</i>
</div>
<div class="col-md-6">
@Html.EditorFor(model => model.Name, new { htmlAttributes = new { @class = "form-control", autocomplete = "off" } })
@Html.ValidationMessageFor(model => model.Name, "", new { @class = "text-danger" })
</div>
</div>
并在开发者工具中:
但是文本框不包含任何值。它是空白的。
有人能找到我所缺少的东西吗?我也尝试过使用ModelState.Clear()。