> If I use this?
> 
> <cfset todayDate = Now()>
> <cfset ttoday = #DateFormat(todayDate, "m/dd/yy")#>
> 
> Will months with 2 digits appear with 2 digits?  IE 10/10/00?


Yes.  The only difference between that and this:

<cfset ttoday = #DateFormat(todayDate, "mm/dd/yy")#

is that in this second example, single-digit months will appear with a
leading zero, i.e. 08/24/00.

M. Casey

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to