0
votes
1answer
47 views

change profile language

Web.config <profile> <properties> <add name="Language" /> </properties> </profile> Default.aspx.cs protected void Page_Load(object sender, ...
2
votes
1answer
336 views

Change UI culture in WinRT

Is it possible to change the UI Culture in WinRT on-the-fly? I've found ApplicationLanguages.PrimaryLanguageOverride = "en";, but this only works before showing the app UI and not afterwards (e.g. I ...
3
votes
2answers
2k views

CurrentCulture incorrectly defaulting to en-US in ASP.net

I have just migrated around 100 ASP.net sites from IIS 6 on Windows Sever 2003 to IIS 7 on Windows 2008. I've just noticed that various pieces of code that use things like DateTime.Parse have started ...
0
votes
1answer
191 views

Set UICulture for subfolder in web application

I have the following code in my Global.asax file: Protected Sub Application_PreRequestHandlerExecute(sender As Object, e As System.EventArgs) ...
13
votes
1answer
4k views

What is the difference between Culture and UICulture?

Could someone give me a bit more information on the difference between Culture and UICulture within the .NET framework? What they do and when to use what.