<!--- Get date/time object. ---> <cfset dtNow = Now() /> <!--- Get NUMERIC date value. ---> <cfset flNow = (dtNow * 1) /> <!--- Output the date and test methods. ---> #DateFormat( dtNow )# - #IsDate( dtNow )# - #IsNumericDate( dtNow )# <!--- Output the numeric date and test methods. ---> #DateFormat( flNow )# - #IsDate( flNow )# - #IsNumericDate( flNow )#