CFOUTPUT
Inside a CFOUTPUT tag, all CFML variables will be processed for output to the browser, and can also be used to loop a query for output of each row.
Usage
<cfoutput> ... </cfoutput>
Attributes
| Attribute | default | required | summary |
|---|---|---|---|
| ATTRIBUTECOLLECTION | A structure containing the tag attributes | ||
| QUERY | Providing a query to this tag will allow it to act like a CFLOOP and iterate over the query for outputting its values. | ||
| GROUP | The column name to be used for grouping the records of a query. This attribute is only used if a 'QUERY' has been provided. | ||
| STARTROW | 1 | The first row of a query to be output. This attribute is only used if a 'QUERY' has been provided. | |
| MAXROWS | -1 | The maximum number of query rows to output. This attribute is only used if a 'QUERY' has been provided. | |
| GROUPCASESENSITIVE | YES | If set to 'YES' then the case will be considered when grouping records of a query. This attribute is only used if the 'GROUP' attribute has been provided. |
