Which data type does the RangeValidator control support?

The data types supported by the RangeValidator control are Integer, Double, String, Currency, and Date.

The RangeValidator control in ASP.NET supports the following data types:

  1. Integer: Validates that the input falls within a specified range of integer values.
  2. Double: Validates that the input falls within a specified range of double-precision floating-point values.
  3. Currency: Validates that the input falls within a specified range of currency values.
  4. Date: Validates that the input falls within a specified range of dates.
  5. String length: Validates the length of a string input falls within a specified range.

When configuring a RangeValidator control, you can specify the type of data it will validate using the Type property, and you can define the range using properties like MinimumValue, MaximumValue, MinimumData, and MaximumDate, depending on the data type selected.