Hi Matrix,
The control picks up the current Threads Current CultureInfo object to determine the ShortDate format. We have found changing the Regional and Language Options on the server don't always (never) apply correctly.
We would suggest setting the culture on the page level, example:
<%
@ Page Culture="en-GB" Language="C#" %>
or, setting the culture in the Web.config, example:
<
system.web>
<globalization culture="en-GB"/>
or, hard coding the current Thread, example:
System.Threading.
Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-GB");
Any one of those solutions above should give you consistency across both servers. Obviously change "en-GB" to your prefered Culture.
Hope this helps.
Thanks,
Geoffrey McGill
----------------------------------------
Coolite Inc.
Email: support [at] coolite [dot] com
Phone: +1(888)775-5888