RangeVlidator Currency Minimum and Maximum value

  • Thread starter Thread starter HipHopper
  • Start date Start date
H

HipHopper

Hi,

What's the Minimum and Maximum value for RangeValidator currency type?

For example form -99,999,999,999,999 to 99,999,999,999,999?
 
HipHopper said:
Hi,

What's the Minimum and Maximum value for RangeValidator currency type?

For example form -99,999,999,999,999 to 99,999,999,999,999?

When set for Currency, it should use the Decimal data type. (The
documentation only says that the values are converted to the specified
data type, but there is no Currency data type, so the Decimal data type
is the obvious choise.)

The possible values for a Decimal ranges from
-79,228,162,514,264,337,593,543,950,335 to
79,228,162,514,264,337,593,543,950,335.
 
Back
Top