Page.GetValidators(String) Method

Definition

Returns a collection of control validators for a specified validation group.

C#
public System.Web.UI.ValidatorCollection GetValidators(string validationGroup);

Parameters

validationGroup
String

The validation group to return, or null to return the default validation group.

Returns

A ValidatorCollection that contains the control validators for the specified validation group.

Examples

The following code example uses the GetValidators method to return the default validation group.

C#
// Get 'Validators' of the page to myCollection.
ValidatorCollection myCollection = Page.GetValidators(null);

// Get the Enumerator.
IEnumerator myEnumerator = myCollection.GetEnumerator();
// Print the values in the ValidatorCollection.
string myStr = " ";
while ( myEnumerator.MoveNext() )
{
    myStr += myEnumerator.Current.ToString();
    myStr += " ";
}
messageLabel.Text = myStr;

Remarks

The GetValidators method returns all the validation objects associated with a specific validation group. You can return the default validation group (all validation controls associated with controls without the ValidationGroup property set) by setting the validationGroup parameter to null.

To validate the members of the validation group, you can enumerate over the collection and call the Validate method of each validator returned.

Applies to

Proizvod Verzije
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also