我正在使用 ASP.NET MVC 4,并且正在寻找邮政编码验证的属性
[Required(ErrorMessage = "Zip Code is Required")]
[ZipCode]
public string ZipCode { get; set; }
我知道这不起作用,但这就是我正在寻找的。
谁能帮忙
我只需要美国的 Zip
我正在使用 ASP.NET MVC 4,并且正在寻找邮政编码验证的属性
[Required(ErrorMessage = "Zip Code is Required")]
[ZipCode]
public string ZipCode { get; set; }
我知道这不起作用,但这就是我正在寻找的。
谁能帮忙
我只需要美国的 Zip
您需要使用正则表达式。尝试这样的事情。
[Required(ErrorMessage = "Zip is Required")]
[RegularExpression(@"^\d{5}(-\d{4})?$", ErrorMessage = "Invalid Zip")]
public string Zip { get; set; }
[Display(Name = "Zip Code")]
[StringLength(10, MinimumLength = 5)]
[RegularExpression("(^\\d{5}(-\\d{4})?$)|(^[ABCEGHJKLMNPRSTVXY]{1}\\d{1}[A-Z]{1} *\\d{1}[A-Z]{1}\\d{1}$)", ErrorMessage = "Zip code is invalid.")] // US or Canada
[Required(ErrorMessage = "Zip Code is Required.")]
public String ZipCode { set; get; }
[DataType(DataType.PostalCode)]
public int ZipCode { get; set; }
这对我有用。