ASP.NET MVC2 DataAnnotations最小长度

时间:2010-05-13 07:34:26

标签: asp.net-mvc-2 data-annotations minimum

因为我没有使用.net 4我不能使用StringLength.MinimumLength属性。什么是替代品?我想我应该写正则表达式:

[Required]
[RegularExpression("", ErrorMessage = "Minimum 3 characters")]
public string Password { get; set; }

谢谢,
ILE