|
The CFSETTING tag controls a few aspects of your page processing, such as how the
output of your HTML code is generated. Don't confuse this with the CFSET tag!
Syntax:
<CFSETTING [ENABLEDCFOUTPUTONLY = "yes" or "no"]
[SHOWDEBUGOUTPUT = "yes" or "no"]
[REQUESTTIMEOUT = "value in seconds"]>
Attributes:
| Attribute |
Description |
Comments |
| enablecfoutputonly |
If the value of this attribute is "Yes" it will only output stuff in between opening and
closing CFOUTPUT tags. |
Optional |
| showdebugoutput |
The default value for this is "Yes". If the value is "Yes" and debugging is set on in
the ColdFusion administration, debugging values will be outputted at the end of the page. |
Optional |
| requesttimeout |
Takes an integer. How many seconds that Coldfusion has to run the page before it raises a
time-out error. |
Optional |
|