我有2页。创建页面和编辑页面。当我在创建页面上选择日期并提交它时,一切正常。但是当我从数据库中读取日期并在输入字段中设置它时,它将不会显示日期。
当我提交创建页面时,日期在数据库中看起来像9/05/2016 0:00:00。
创建页面:
@Html.EditorFor(model => model.Date, new{htmlAttributes = new{@class = "form-control",type = "date"}})
编辑页面:
@Html.EditorFor(model => model.Date, new { htmlAttributes = new { @class = "form-control", @Value = ViewBag.Date, type = "date" } })
域:
public DateTime Date{ get; set; }