Page.GetValidators Method
.NET Framework 2.0
Returns a collection of control validators for a specified validation group.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public ValidatorCollection GetValidators ( String validationGroup )
public function GetValidators ( validationGroup : String ) : ValidatorCollection
Not applicable.
Parameters
- validationGroup
The validation group to return, or a null reference (Nothing in Visual Basic) to return the default validation group.
Return Value
A 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 a null reference (Nothing in Visual Basic).
To validate the members of the validation group, you can enumerate over the collection and call the Validate method of each validator returned.
Community Additions
ADD
Show: