MVC 3 确认电子邮件地址字段的验证

发布于 2024-12-02 16:58:17 字数 373 浏览 0 评论 0原文

如果我的模型上的两个字段相等,有没有办法使用 MVC 数据验证属性来验证客户端。

我有两个字段:

    [Required(ErrorMessage = "*")]
    [Email(ErrorMessage = "*")]
    public string Email { get; set; }

    [Required(ErrorMessage = "*")]
    [Email(ErrorMessage = "*")]
    public string ConfirmEmail { get; set; }

我希望能够添加一个属性,这两个字段应该相等,如果不相等,则会出现验证错误。有办法这样做吗?

谢谢。

Is there a way using MVC data validation attributes to validate client side if two fields on my model are equal.

I have two fields:

    [Required(ErrorMessage = "*")]
    [Email(ErrorMessage = "*")]
    public string Email { get; set; }

    [Required(ErrorMessage = "*")]
    [Email(ErrorMessage = "*")]
    public string ConfirmEmail { get; set; }

I want to be able to add an attribute that those two fields should be equel and if not an validatio error will appear. Is there a way to do so?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怎会甘心 2024-12-09 16:58:17

是的 - 例如:

[Compare("Email", ErrorMessage = "The email and confirmation do not match.")]

希望有帮助。

Yep - for example:

[Compare("Email", ErrorMessage = "The email and confirmation do not match.")]

Hope that helps.

木格 2024-12-09 16:58:17

查看 CompareAttribute< /代码>

[Compare("Email", ErrorMessage = "The email and confirmation email do not match.")]
public string ConfirmEmail { get; set; }

Take a look at the CompareAttribute

[Compare("Email", ErrorMessage = "The email and confirmation email do not match.")]
public string ConfirmEmail { get; set; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文