search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Month name

Asked by Miguel
7 years ago.

Where does it get the month name? could be customized for no English countries?

Answer posted by Dan Letecky [DayPilot]
7 years ago.

In the ASP.NET version, it uses the current locale to format the dates.

In the demo, the locale is set to "en-us" in web.config:

<configuration>
  <appSettings/>
  <system.web>
    <compilation debug="true" targetFramework="4.0"/>
    <globalization uiCulture="en-US" culture="en-US"/>
  </system.web>
</configuration>

If you remove the <globalization> tag from web.config it will use the locale of your server.

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.