ASP.NET MVC 4 中服务器端日期验证的格式是如何配置的?例如,以下模型字段('BirthDate')仅根据客户端上的格式 'MM/dd/yyyy' 进行验证。在我的服务器上,当 POST 数据绑定到模型时,显然需要格式“dd/MM/yyyy”。
[Required]
[Display(Name = "Date of Birth")]
[DisplayFormat(DataFormatString="{0:MM/dd/yyyy}", ApplyFormatInEditMode=true)]
[DataType(DataType.Date)]
public DateTime BirthDate { get; set; }