How to Set Locale Setting in a C# Web Application Globally
To be able to set your web application global setting, you need to set it in global.asax file. And to make it more dynamic it's better t...
https://www.czetsuyatech.com/2011/07/c-set-locale-setting-globally.html
To be able to set your web application global setting, you need to set it in global.asax file. And to make it more dynamic it's better to set the locale setting string in web.config.
//web.config
//global.asax
//web.config
<configuration> <appSettings> <add key="Locale" value="en-PH" /> </appSettings> <configuration>
//global.asax
public void Application_BeginRequest(object sender, EventArgs e) { Thread.CurrentThread.CurrentCulture = new CultureInfo(ConfigurationManager.AppSettings["Locale"]); Thread.CurrentThread.CurrentUICulture = new CultureInfo(ConfigurationManager.AppSettings["Locale"]); }
Post a Comment