Page.Validators Property

Definition

Gets a collection of all validation controls contained on the requested page.

public:
 property System::Web::UI::ValidatorCollection ^ Validators { System::Web::UI::ValidatorCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Web.UI.ValidatorCollection Validators { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Validators : System.Web.UI.ValidatorCollection
Public ReadOnly Property Validators As ValidatorCollection

Property Value

The collection of validation controls.

Attributes

Remarks

You can use this property to manipulate the methods and properties of the ValidatorCollection object associated with the current Page instance. This collection contains all the validation server controls that are contained in a page.

Calling the Page.Validate method causes validation logic to be executed for each validation server control in the current validation group. If any of these controls do not pass, the Page.IsValid property returns false.

For more information on validation controls, see ASP.NET Validation Controls.

Applies to

See also