我傳遞一個模型視圖設置初始值DataType.DateTime,模型包含此屬性:模型
[Required(ErrorMessage = "Please enter a start date")]
[DataType(DataType.DateTime)]
[DisplayName("Start Date")]
public DateTime StartDate { get; set; }
而且我有這個在我看來:
<%: Html.TextBoxFor(m => m.StartDate) %>
當我加載頁面,文本框填充日期:1/1/0001 12:00:00 AM
有沒有辦法沒有這種情況發生,也許通過使用元數據?