CompareValidator.Operator Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the comparison operation used in validation. The default value is Equal
. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
public:
property System::Web::UI::WebControls::ValidationCompareOperator Operator { System::Web::UI::WebControls::ValidationCompareOperator get(); void set(System::Web::UI::WebControls::ValidationCompareOperator value); };
[System.ComponentModel.Bindable(false)]
public System.Web.UI.WebControls.ValidationCompareOperator Operator { get; set; }
[<System.ComponentModel.Bindable(false)>]
member this.Operator : System.Web.UI.WebControls.ValidationCompareOperator with get, set
Public Property Operator As ValidationCompareOperator
Property Value
The comparison operation used in validation.
- Attributes
Remarks
The ControlToValidate property must be on the left side of the comparison operator, and the ControlToCompare property on the right side, for valid evaluation to occur.
The following table shows the available operations.
DataTypeCheck
Checks whether the data types for the two controls are valid.
Equal
Checks whether the two controls are equal to each other.
GreaterThan
Checks whether one control is greater than the other control.
GreaterThanEqual
Checks whether one control is greater than or equal to the other control.
LessThan
Checks whether one control is less than the other control.
LessThanEqual
Checks whether one control is less than or equal to the other control.
NotEqual
Checks whether the controls are not equal to each other.