2
的驗證,我用我的模型日期控件ASP.NET MVC 2使用DataAnnotations日期不工作
[DataType(DataType.DateTime)]
public DateTime txtDateAppCompletion { get; set; }
我也試過DataType.Date以下爲我只想輸入的日期。
[DataType(DataType.Date)]
public DateTime txtDateAppCompletion { get; set; }
出於某種原因,當我運行的形式和我鍵入任何不是約會,我們不驗證它,而不是在服務器或客戶端(客戶端啓用了驗證)。
任何想法,爲什麼我有這個問題?如何解決它?