我有以下模型类: -
public class DataCenter_Validation
{
[Required]
[MaxLength(50)]
public string Name { get; set; }
[Timestamp]
public byte[] timestamp { get; set; }
}
但是,maxlength验证仅在提交表单后才起作用,并且对客户端验证没有任何影响。而必需的数据注释既适用于客户端,也适用于服务器端。任何人都可以建议什么是错的? 感谢