Windows Azure having troubles with date format

azure

Solution

You can add something like this to your web.config (in the system.web section):

<globalization uiCulture="en" culture="en-GB" />

You can find the appropriate identifier in the CultureInfo Class.

Problem

I'm having a lot of trouble deploying a website on windows azure... with dates and money formats, for example. My question is: It is possible to change the server's culture, or do I have to change my entire app to fits the azure location settings? Works fine on servers with Latin American standards.

Original source