To fix the problem, I wrote a few lines of ColdFusion code to set a tzid variable to the proper timezone identifier:
<cfset tzinfo = GetTimeZoneInfo()>
<cfset tzid = "CST">
<cfif tzinfo.isDSTOn IS "True">
<cfset tzid = "CDT">
</cfif>
Thank you!
All comments are moderated before publication. These HTML tags are permitted: <p>, <b>, <i>, <a>, and <blockquote>. This site is protected by reCAPTCHA (for which the Google Privacy Policy and Terms of Service apply).