值未在文本框中填充

时间:2015-03-04 13:14:00

标签: model-view-controller

我有一个带有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()。

0 个答案:

没有答案