Converting To And From GMT / UTC Time In ColdFusion Using DateConvert()

<!--- Get the current time. --->
<cfset dtNow = Now() />
 
<!---
	Convert the date to GMT using DateAdd() and DateConvert()
	to make sure that they are the same.
--->
DateAdd(): #DateAdd( "s", GetTimeZoneInfo().UTCTotalOffset, dtNow )#
<br />
 
DateConvert(): #DateConvert( "Local2UTC", dtNow )#
<br />

For Cut-and-Paste