Dec 5, 2007 #1 scottew IS-IT--Management Mar 6, 2003 492 US I'm trying to populate a field on a from with a date. If I use <cfoutput>#DateFormat(now()#</cfoutput>, I get 05-Dec-07 How can I get it to give me 12/05/2007? Thanks in advance. Scott
I'm trying to populate a field on a from with a date. If I use <cfoutput>#DateFormat(now()#</cfoutput>, I get 05-Dec-07 How can I get it to give me 12/05/2007? Thanks in advance. Scott
Dec 5, 2007 1 #2 cfStarlight Technical User Mar 27, 2007 172 US Try <cfoutput>#DateFormat(now(), "mm/dd/yyyy")# Upvote 0 Downvote
Dec 5, 2007 Thread starter #3 scottew IS-IT--Management Mar 6, 2003 492 US Thanks cfStarlight, that did it. Upvote 0 Downvote