17 writes to ControlToValidate
System.Web (11)
UI\WebControls\ChangePassword.cs (3)
2857
validator.
ControlToValidate
= textBox.ID;
2916
compareValidator.
ControlToValidate
= _confirmNewPasswordID;
2929
regExpValidator.
ControlToValidate
= _newPasswordID;
UI\WebControls\CreateUserWizard.cs (4)
2301
ControlToValidate
= targetTextBox.ID,
3199
ControlToValidate
= _emailID,
3213
ControlToValidate
= _passwordID,
3224
ControlToValidate
= _confirmPasswordID,
UI\WebControls\login.cs (2)
1793
userNameRequired.
ControlToValidate
= userNameTextBox.ID;
1812
passwordRequired.
ControlToValidate
= passwordTextBox.ID;
UI\WebControls\PasswordRecovery.cs (2)
2279
answerRequired.
ControlToValidate
= answerTextBox.ID;
2595
userNameRequired.
ControlToValidate
= userNameTextBox.ID;
System.Web.DynamicData (5)
DynamicData\SimpleFieldTemplateUserControl.cs (5)
105
ControlToValidate
= TextBoxID,
115
ControlToValidate
= TextBoxID,
126
ControlToValidate
= TextBoxID,
137
ControlToValidate
= TextBoxID,
146
ControlToValidate
= TextBoxID,
System.Web.Mobile (1)
UI\MobileControls\BaseValidator.cs (1)
166
_webBaseValidator.
ControlToValidate
= value;
15 references to ControlToValidate
System.Web (11)
UI\WebControls\BaseValidator.cs (4)
350
if (
ControlToValidate
.Length > 0) {
351
AddExpandoAttribute(expandoAttributeWriter, id, "controltovalidate", GetControlRenderID(
ControlToValidate
));
450
string controlToValidate =
ControlToValidate
;
792
string validateId =
ControlToValidate
;
UI\WebControls\CompareValidator.cs (2)
133
if (StringUtil.EqualsIgnoreCase(
ControlToValidate
, ControlToCompare)) {
166
string leftText = GetControlValidationValue(
ControlToValidate
);
UI\WebControls\CustomValidator.cs (2)
112
string controlToValidate =
ControlToValidate
;
130
string controlToValidate =
ControlToValidate
;
UI\WebControls\RangeValidator.cs (1)
109
string text = GetControlValidationValue(
ControlToValidate
);
UI\WebControls\RegularExpressionValidator.cs (1)
84
string controlValue = GetControlValidationValue(
ControlToValidate
);
UI\WebControls\RequiredFieldValidator.cs (1)
69
string controlValue = GetControlValidationValue(
ControlToValidate
);
System.Web.DynamicData (3)
DynamicData\DynamicValidator.cs (3)
44
Control c = NamingContainer.FindControl(
ControlToValidate
);
47
DynamicDataResources.DynamicValidator_ControlNotFound,
ControlToValidate
, ID));
106
string controlValue = GetControlValidationValue(
ControlToValidate
);
System.Web.Mobile (1)
UI\MobileControls\BaseValidator.cs (1)
162
return _webBaseValidator.
ControlToValidate
;