CFOUTPUT
Displays the results of a database query or other operation.
CFOUTPUT |
Attribute |
Description
|
QUERY
|
The name of the CFQUERY from which you want to draw
data for the output section.
|
MAXROWS
|
Specifies the maximum number of rows you want displayed
in the output section.
|
GROUP |
Specifies the parameter around which to group output.
|
STARTROW
|
Specifies the row from which output will start.
|
Examples
<CFOUTPUT>
<PRE>
FROM: CoffeeValley List Manager
SUBJECT: #FORM.Subject#
DATE: #DateFormat(Now(),'dddd, mmm dd, yyyy')#
#FORM.Body#
</PRE>
</CFOUTPUT>
==========================
<CFOUTPUT>
#Cookie.User_ID#
</CFOUTPUT>