Hello,
I have a problem with currency format. I explain myself. In local, the webcurencyeditor shows a number float with a point (eg: 14.00) But if I deploy my website on my server, the format is with a virgule (eg: 14,00).
I changed the regional setting on the server to change the virgule in point.
I don't find explaination.
How set the control to force the point ?
Could you help me please?
Greets
Hi Jphilip74,
I would suggest you to set the Culture and UICulture of your page - http://msdn.microsoft.com/en-us/library/bz9tc508.aspx. If set for example to en-US, the decimal delimiter should be a point.
Let me know if this helps.
Hello Jphilip74,
I'm just checking if you have resolved your issue.
I've resolved this error :
Dim z_CulInf = Globalization.CultureInfo.CreateSpecificCulture(Globalization.CultureInfo.CurrentCulture.Name)
z_CulInf.NumberFormat.NumberDecimalSeparator = "."
z_CulInf.NumberFormat.NumberGroupSeparator = ""
z_CulInf.NumberFormat.CurrencyDecimalSeparator = "."
z_CulInf.NumberFormat.PercentDecimalSeparator = "."
Threading.Thread.CurrentThread.CurrentCulture = z_CulInf
Threading.Thread.CurrentThread.CurrentUICulture = z_CulInf
Thank you for sharing your solution with the community.