I am working on a product which is deployed across to european countries as well as within US. Some of the ASP.NET pages have the range validation controls which has Type = Currency.
The range check I need to perform is say MinimumValue = 0 MaximumValue=999999.99
The issue is when I deploy the application to Icelandic region, the web.config file already has the globalization culture, CutureUI settings to is-IS, the deployment web server as well as the region settings as Icelandic, it throws a Conversion Type Error.
In Iceland the Currency 9,99,999.99 is interpreted as 9.99.999,99.
I know that the Range Validator - it checks the type of data before performing the validation, it somehow rejects the 9.99.999,99 value as non money type.
Any solution over this issue is highly appreciated.
Thanks in advance,
AG