在我的視圖模型我有以下屬性:ASP.net MVC數據註釋的DateTime默認值
[Required]
[DataType(DataType.Date, ErrorMessage="Please enter a valid date in the format dd/mm/yyyy")]
[Display(Name = "Date of Birth")]
public DateTime DOB { get; set; }
在我看來,我有以下幾點:
<div class="editor-label">
@Html.LabelFor(model => model.DOB)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.DOB)
@Html.ValidationMessageFor(model => model.DOB)
</div>
提交表單的默認前DOB的值是1/01/0001我如何阻止這個值被自動填充,當人們訪問這個表單時我只想要一個空的字段?