Is it possible that .NET uses on server A ',' as decimal seperator and on another server B '.'? + How can you detect this?
When converting strings to doubles, on server A everything works fine, but on server B we have problems.
Example:
server A : 20,4 --> 20.4 server B : 20,4 --> 204
We would need to detect this so that on both servers things keep on working.
thx, Lieven Cardoen