Chapter 2: ColdFusion Functions
CreateDate
Returns a valid date/time object.
See also
Syntax
CreateDate( year , month , day )
year
Number representing the year in the range 100–9999. Years from 0 to 29 are
interpreted as 21
values.
month
Number representing the month of the year, ranging from 1 (January) to 12
(December).
day
Number representing the day of the month, ranging from 1 to 31.
Usage
CreateDate is a subset of CreateDateTime.
Time in the returned object is set to 00:00:00.
Examples
<!---------------------------------------------------------
This example shows how to use CreateDate, CreateDateTime, and
createODBCdate
----------------------------------------------------------->
<HTML>
<HEAD>
<TITLE>
CreateDate Example
</TITLE>
</HEAD>
<basefont face="Arial, Helvetica" size=2>
<body
<H3>CreateDate Example</H3>
<CFIF IsDefined("FORM.year")>
Your date value, presented using different CF date functions:
<CFSET yourDate = CreateDate(FORM.year, FORM.month, FORM.day)>
<CFOUTPUT>
<UL>
<LI>Built with CreateDate: #CreateDate(FORM.year, FORM.month,
CreateDateTime
and CreateODBCDate.
st
century values. Years 30 to 99 are interpreted as 20
bgcolor="#FFFFD5">
FORM.day)#
297
th
century
Need help?
Do you have a question about the COLDFUSION 4.5-CFML LANGUAGE and is the answer not in the manual?
Questions and answers