我在我的Model類中有一個DateTime屬性,並且想要將它的默認值設置爲Now。下面的代碼是我希望能夠工作但不能編譯的。它不喜歡System.DateTime.Now調用:MVC3 DateTime屬性的默認值
[DisplayFormat(DataFormatString = "{0:d}", ApplyFormatInEditMode = true)]
[Display(Name = "To Date")]
[Required(ErrorMessage = "To Date is required.")]
[DefaultValue(System.DateTime.Now)]
public DateTime DateTo { get; set; }
任何想法?
你真的需要加倍發佈嗎? http://stackoverflow.com/questions/7891519/mvc3-htmlhelper-defaults – Henry