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 cultur
I believe you'll need to change the culture settings in your application. Here's a similar thread - Currency settings in Azure
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.