所以。如果我有這個在我的模型:C#MVC DateTime Picker Problems
[DataType(DataType.Date)]
public DateTime Birthday { get; set; }
我得到一個不錯的日期選擇器場時,我調用(不能選擇時間雖然):
@Html.EditorFor(model => model.Birthday, new { htmlAttributes = new { @class = "form-control" } })
但是,如果我想記錄像日期和開始時間事件的:
[DataType(DataType.DateTime)]
public DateTime Start { get; set; }
我得到只是一個普通的文本字段。
而且,我剛纔注意到,當我想編輯現有的記錄,日期是空的,必須重新輸入即使所有其他領域是很好的填充。