CompareValidator.Operator Property
Assembly: System.Web (in system.web.dll)
[ThemeableAttribute(false)] public: property ValidationCompareOperator Operator { ValidationCompareOperator get (); void set (ValidationCompareOperator value); }
/** @property */ public ValidationCompareOperator get_Operator () /** @property */ public void set_Operator (ValidationCompareOperator value)
public function get Operator () : ValidationCompareOperator public function set Operator (value : ValidationCompareOperator)
Not applicable.
Property Value
One of the ValidationCompareOperator values. The default value is Equal.Use the Operator property to specify the comparison operation to perform. The following table lists the comparison operations that are possible.
| Operation | Description | ||
|---|---|---|---|
| Equal | A comparison for equality between the values of the input control being validated and another control, or a constant value. | ||
| NotEqual | A comparison for inequality between the values of the input control being validated and another control, or a constant value. | ||
| GreaterThan | A comparison for greater than between the values of the input control being validated and another control, or a constant value. | ||
| GreaterThanEqual | A comparison for greater than or equal to between the values of the input control being validated and another control, or a constant value. | ||
| LessThan | A comparison for less than between the values of the input control being validated and another control, or a constant value. | ||
| LessThanEqual | A comparison for less than or equal to between the values of the input control being validated and another control, or a constant value. | ||
| DataTypeCheck | A data type comparison of the value entered in the input control being validated and the data type specified by the BaseCompareValidator.Type property. Validation fails if the value cannot be converted to the specified data type.
|
This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and Introduction to ASP.NET Themes.
The following code example demonstrates how to use the Operator property to specify the comparison operation.
Security Note: |
|---|
| This example has a text box that accepts user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see Script Exploits Overview (Visual Studio). |
Note: