Change the current culture for your entire website.
Just specify a current culture in your web.config file. In this case we specify it on an application level:
<configuration>
<system.web>
<globalization culture="nl-BE" uiCulture="nl-BE" />
</system.web>
</configuration>
It is as easy as that :)
So when you now execute the following code:
now.ToLongDateString will return maandag 28 februari 2005 (instead of monday...)
Read it all here
- Ken