Hi how can I set culture information on a user control? I have set up the resource file but I am unable to override the InitializeCulture() as it is not available in System.Web.UI.UserControl. Can someone point me in the right direction? I want to this programatically. Thank you.
|
|
Yo need to change the culture of the current thread |
||
|
|
|
|
In the PageLoad event of your user control you can set the culture of the current thread:
Any internal framework calls after this point will use the current culture set for this thread, so for example the Convert.ToDouble() call will work here:
...but this would not work:
... if we set the culture to French Canadian:
... this will work and correctly parse the string because the default decimal separator for the French Canadian culture is a comma. |
||
|
|
