0

我在 ASP.NET MVC3 中使用模型验证。比较电子邮件验证根本没有触发。我还为 MVC3 安装了 DataAnnoatations Extensions。下面是我的代码。

[Display(ResourceType = typeof(Resources.Views.Account.Local.Create), Name = "EMail1")]
[Required(ErrorMessageResourceType = typeof(Resources.Views.Account.Local.Create), 
    ErrorMessageResourceName = "rqEMail1")]
[RegularExpression(@"\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*", 
    ErrorMessageResourceType = typeof(Resources.Views.Account.Local.Create), 
    ErrorMessageResourceName = "regxEMail1")]

public string EMail1 { get; set; }


[Required]
[Compare("EMail1", ErrorMessageResourceType = typeof(Resources.Views.Account.Local.Create), 
    ErrorMessageResourceName = "cmpEmail")]
[RegularExpression(@"\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*", 
    ErrorMessageResourceType = typeof(Resources.Views.Account.Local.Create), 
    ErrorMessageResourceName = "regxEMail2")]

public string EMail2 { get; set; }
4

1 回答 1

0

如果验证在服务器端正确发生,请查看您在客户端包含的脚本,因为它们可能与比较验证器不兼容。特别是检查 jQuery 本身和 jQuery.Validate 插件的版本(假设您使用的是最常用的客户端脚本)。

于 2011-08-27T07:33:27.270 回答