Skip to content

Instantly share code, notes, and snippets.

@rebeccapowell
Created August 30, 2012 10:30
Show Gist options
  • Select an option

  • Save rebeccapowell/3525846 to your computer and use it in GitHub Desktop.

Select an option

Save rebeccapowell/3525846 to your computer and use it in GitHub Desktop.
ASP.NET - Manually set culutre on current thread
protected void Application_BeginRequest(object sender, EventArgs e)
{
Thread.CurrentThread.CurrentCulture = new CultureInfo(HttpContext.Current.Request.UserLanguages[0]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment