Click here to Skip to main content
15,883,852 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have multilingual asp.net application and currentUICulture is set to pt-PT. problem is by setting the UICulture decimal point (.) changes to comma (,) but my client requires the same decimal point (.) I have tried to override the decimal separator in InitializeCulture event of the page like this

C#
protected override void InitializeCulture()
{
System.Globalization.CultureInfo ci = System.Globalization.CultureInfo.CurrentUICulture;
ci.NumberFormat.NumberDecimalSeparator = ".";
ci.NumberFormat.NumberGroupSeparator = ",";

System.Threading.Thread.CurrentThread.CurrentUICulture = ci;
System.Threading.Thread.CurrentThread.CurrentCulture = ci;

base.InitializeCulture();
}


and when I am binding the texboxes in page_load event the decimal separator remains comma (,) and problem is the InitializeCulture() not forcing the decimal separator to what I have specified

please help.
Posted
Updated 21-Apr-11 20:26pm
v3

1 solution

By default, it will use whatever culture is indicating by the operating system.

What you might want to do is provide the user with a way to set it via application settings, and then set it based on that setting.
 
Share this answer
 
Comments
[no name] 21-Apr-11 6:19am    
My 5.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900