I my .Net application I use CurrentCulture to format dateTime and numbers. When on the Localhost this works like a charm and the format changes when I change the system's culture.
When I publish my application though it does not. As a test I added alert("@System.Globalization.CultureInfo.CurrentCulture.DisplayName
as a test and no matter to which culture I change my system this stays Swedish(Sweden). I added ClearCashedData for the current culture, which again works on the localhost, but not for the published site.
I guess I have a two part question: 1. where does the published application get it's culture from and 2. how can I make it so that it gets it's culture from my (or the user's) system?
Thanks!