Whats wrong with numbers

  • Thread starter Thread starter aa
  • Start date Start date
A

aa

The web application (asp.net) from my computer working good (win xp)
but then I deploy it to WEb server (WIN2003) and when I am entering the
decimal numbers, numbers are bad (2003.3 to 20033).

Regions setting is same
 
Start by checking the current culture used by the .NET framework
(Thread.CurrentThread.CurrentCulture).

If you find the culture is not properly set, you can define the culture
either in the web.config file (if you are using always the same culture for
example) or programmatically (probably better if you must handle multiple
languages).

Patrice
 
Back
Top