gpt4 book ai didi

asp.net-mvc - ASP.NET MVC 4 邮政编码验证

转载 作者:行者123 更新时间:2023-12-01 21:51:45 26 4
gpt4 key购买 nike

我正在使用 ASP.NET MVC 4,并且正在寻找邮政编码验证的属性

[Required(ErrorMessage = "Zip Code is Required")]
[ZipCode]
public string ZipCode { get; set; }

我知道这行不通,但这就是我正在寻找的。

谁能帮忙

我需要美国的邮政编码

最佳答案

您需要使用正则表达式。尝试这样的事情。

[Required(ErrorMessage = "Zip is Required")]
[RegularExpression(@"^\d{5}(-\d{4})?$", ErrorMessage = "Invalid Zip")]
public string Zip { get; set; }

关于asp.net-mvc - ASP.NET MVC 4 邮政编码验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16675176/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com