CompareValidator
Working with CompareValidator
The CompareValidator control compares the value of one control to another, or to an explicit value
in the control's ValueToCompare property.
Note: For the purpose of validation, a specific
property on the control is designated as its "value". For more information, see the Server Control Form Validation section.
CompareValidator uses three key properties to perform its validation. ControlToValidate and ControlToCompare
contain the values to compare. Operator defines the type of comparison to perform, for example, Equal or Not
Equal. CompareValidator performs the validation by evaluating these properties as an expression, as shown in the following example.
If the expression evaluates
true, the validation result is valid.
The following sample illustrates using the CompareValidator control.
Copyright 2001 Microsoft Corporation. All rights reserved.