这是我的示范类
public class Model
{
[DataType(DataType.DateTime, ErrorMessage = "My error message")]
public DateTime Day { get; set; }
}
When I try to input incorrect value for example "notdate" i got the error "The value notdate is not valid for Day." instead of my specified ErrorMessage "My error message".
我使用伙伴关系。 NET MVC 3.0 beta。 这是ug?