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