Page.GetValidators(String) 方法

定义

返回指定验证组的控件验证程序的集合。

public:
 System::Web::UI::ValidatorCollection ^ GetValidators(System::String ^ validationGroup);
public System.Web.UI.ValidatorCollection GetValidators (string validationGroup);
member this.GetValidators : string -> System.Web.UI.ValidatorCollection
Public Function GetValidators (validationGroup As String) As ValidatorCollection

参数

validationGroup
String

要返回的验证组,或 null 以返回默认验证组。

返回

ValidatorCollection

一个 ValidatorCollection,它包含指定验证组的控件验证程序。

示例

下面的代码示例使用 GetValidators 该方法返回默认验证组。

// 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;
' Get 'Validators' of the page to myCollection.
  Dim myCollection As ValidatorCollection = Page.GetValidators(Nothing)
' Get the Enumerator.
Dim myEnumerator As IEnumerator = myCollection.GetEnumerator()
' Print the values in the ValidatorCollection.
Dim myStr As String = " "
While myEnumerator.MoveNext()
    myStr += myEnumerator.Current.ToString()
    myStr += " "
End While
messageLabel.Text = myStr

注解

该方法 GetValidators 返回与特定验证组关联的所有验证对象。 可以通过将参数设置为validationGroup``null) ,返回默认验证组 (与控件ValidationGroup关联的所有验证控件。

若要验证验证组的成员,可以枚举集合并调用 Validate 返回的每个验证程序的方法。

适用于

另请参阅