![]() ![]() | ||
You use range validators to check if the value of a data-entry control is in a specified range of values. Range validators are supported by the RangeValidator class, and here is the inheritance hierarchy for that class:
Object Control WebControl Label BaseValidator BaseCompareValidator RangeValidator
You can find the notable public properties of RangeValidator objects in Table 18.7. (This class has no non-inherited methods or events.) Note that as with other Web server controls, I am not listing the notable properties, methods, and events this class inherits from the Control and WebControl classes-you can find them in Chapter 15, Tables 15.1 to 15.5. This class inherits the BaseValidator class, which you can find in Tables 18.2 and 18.3, the BaseCompareValidator class, which you can see in Table 18.5, as well as the Label class; the Label class has only one non-inherited public member-the Text property, which holds the text the label displays.
Property |
Means |
---|---|
MaximumValue |
Gets/sets the allowed range's maximum value. |
MinimumValue |
Gets/sets the allowed range's minimum value. |
![]() ![]() | ||