Page.GetValidators Method (String)
.NET Framework (current version)
Returns a collection of control validators for a specified validation group.
Assembly: System.Web (in System.Web.dll)
Parameters
- validationGroup
-
Type:
System.String
The validation group to return, or null to return the default validation group.
Return Value
Type: System.Web.UI.ValidatorCollectionA ValidatorCollection that contains the control validators for the specified validation group.
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.
.NET Framework
Available since 2.0
Available since 2.0
Show: