Ism*_*ilS 2 validation data-annotations asp.net-mvc-3
我正在使用如下验证.
[Required(ErrorMessage = "Please provide 10 digit mobile number without spaces and without country code (+91)")]
[Integer(ErrorMessage = "Please provide 10 digit mobile number without spaces and without country code (+91)")]
[Range(1000000000, 9999999999, ErrorMessage = "10 digit mobile number only without spaces and without country code (+91)")]
[Display(Name = "Mobile Number")]
public int MobileNo { get; set; }
验证总是失败The value '9999999998' is invalid..难道我做错了什么?
Vin*_*nod 13
试试这个:
[RegularExpression("^[0-9]{10}$", ErrorMessage = "Invalid Mobile No")]