0

我在使用 asp.net MVC 2.0 中的正则表达式自定义验证器验证控件列表时遇到问题。

我的代码如下。这使用自定义验证器。但这不起作用,有什么建议吗?如果任何一个控件值无效,则将错误分配给所有控件。

[QuestionRegularExpression(@"\d{2}", ErrorMessage = "Must be numeric")]
public List<IDateQuestion> DriverViolationsList { get; private set; }
    public ViolationDatesFormModel()
    {
        DriverViolationsList = new List<IDateQuestion>();
    }

这没有用。任何人请帮忙。提前致谢。

4

1 回答 1

0

你需要注册适配器Global.asax.cs

protected void Application_Start()
{
    //...
    DataAnnotationsModelValidatorProvider.RegisterAdapter(
        typeof(QuestionRegularExpressionAttribute),
        typeof(RegularExpressionAttributeAdapter));
}
于 2012-05-10T21:06:06.937 回答