5 instantiations of RegularExpressionValidator
System.Web (3)
UI\WebControls\ChangePassword.cs (1)
2926RegularExpressionValidator regExpValidator = new RegularExpressionValidator();
UI\WebControls\CreateUserWizard.cs (2)
3197container.EmailRegExpValidator = new RegularExpressionValidator() { 3211container.PasswordRegExpValidator = new RegularExpressionValidator() {
System.Web.DynamicData (1)
DynamicData\SimpleFieldTemplateUserControl.cs (1)
104RegularExpressionValidator regularExpressionValidator = new RegularExpressionValidator {
System.Web.Mobile (1)
UI\MobileControls\RegularExpressionValidator.cs (1)
46_webRegularExpressionValidator = new WebCntrls.RegularExpressionValidator();
14 references to RegularExpressionValidator
System.Web (9)
UI\WebControls\ChangePassword.cs (5)
2317RegularExpressionValidator regExpValidator = container.RegExpValidator; 2646RegularExpressionValidator regExpValidator = container.RegExpValidator; 2926RegularExpressionValidator regExpValidator = new RegularExpressionValidator(); 3206private RegularExpressionValidator _regExpValidator; 3526internal RegularExpressionValidator RegExpValidator {
UI\WebControls\CreateUserWizard.cs (4)
1900RegularExpressionValidator regExpValidator = _createUserStepContainer.PasswordRegExpValidator; 1961RegularExpressionValidator emailRegExpValidator = _createUserStepContainer.EmailRegExpValidator; 3617internal RegularExpressionValidator EmailRegExpValidator { get; set; } 3680internal RegularExpressionValidator PasswordRegExpValidator { get; set; }
System.Web.DynamicData (4)
DynamicData\FieldTemplateUserControl.cs (3)
405else if (validator is RegularExpressionValidator) { 406SetUpRegexValidator((RegularExpressionValidator)validator, column); 524private void SetUpRegexValidator(RegularExpressionValidator validator, MetaColumn column) {
DynamicData\SimpleFieldTemplateUserControl.cs (1)
104RegularExpressionValidator regularExpressionValidator = new RegularExpressionValidator {
System.Web.Mobile (1)
UI\MobileControls\RegularExpressionValidator.cs (1)
41private WebCntrls.RegularExpressionValidator _webRegularExpressionValidator;