CurrentCulture incorrectly defaulting to en-US in ASP.net
These are alternative places where you could search: I can’t find anywhere that’s settings the culture to ‘en-US’… but something is. Thread.CurrentThread.CurrentCulture.Name is outputting ‘en-US’ Thread.CurrentThread.CurrentCulture.NumberFormat.CurrencySymbol is outputting ‘$’ Try looking for the InitializeCulture method, this method is overridden in ASP.Net pages to set the Culture like: protected override void InitializeCulture() { var hidden = … Read more