Windows Azure having troubles with date format

前端 未结 2 1016
长情又很酷
长情又很酷 2021-01-18 13:03

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

相关标签:
2条回答
  • 2021-01-18 13:43

    I believe you'll need to change the culture settings in your application. Here's a similar thread - Currency settings in Azure

    0 讨论(0)
  • 2021-01-18 13:45

    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.

    0 讨论(0)
提交回复
热议问题