如何在MVC的编辑器中更改日期?

时间:2016-05-22 06:12:44

标签: asp.net-mvc datetime

我有模型DateTime

public System.DateTime date_in { get; set; }

这就是它的观点:

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

当我点击EditorFor()更改日期时,它写道:

  

字段date_in必须是日期。

我试图插入的所有格式(有时间和没有并且更改月份和日期的位置)都是错误的。

我个人的方式 成功的是当月值和日值小于13时 我试过回答人们回答类似问题的答案 比如添加全球化标签和自定义绑定器 但没有任何帮助我。

0 个答案:

没有答案