Is it possible to have a global currency symbol without depending on
Thank you.
Global Currency Symbol
Global Currency Symbol
Global currency symbol does not depend on current localization. It depend from Windows Regional Settings.
You need use it in TextFormat property?
Thank you.
You need use it in TextFormat property?
Thank you.
Global Currency Symbol
No, from what i tested it depends on the localization in my web.config.
My web.config culture is en-GB and the symbols prints out as the UK Pound sign.
My web.config culture is en-GB and the symbols prints out as the UK Pound sign.
Global Currency Symbol
Yes, you are right, in web applications currency symbol depends from settings in web.config too.
Global Currency Symbol
Is there any way i can override the setting in web.config ? cause for my ap en-GB is correct for everything except the currency sysbol. I need my currency symbol to be some other character.
Please Help
Please Help
Global Currency Symbol
You can use following code:
Thank you.
Code: Select all
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-US", false);