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...

//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