Lucee Tag Reference
Tag <CFSETTING>
Controls various aspects of page processing, such as the output of HTML code in pages. One
benefit of this option is managing whitespace that can occur in output pages served by CFML.
Body
This tag may have a body.
Example
<cfsetting [enablecfoutputonly="any"] [requesttimeout="number"] [showdebugoutput="boolean"]> [</cfsetting>]
This tag is also supported within cfscript
<cfscript> setting [enablecfoutputonly="any"] [requesttimeout="number"] [showdebugoutput="boolean"] { } </cfscript>
Attributes
The attributes for this tag are fixed. Except for the following attributes no other attributes are allowed.
Name | Type | Required | Description |
---|---|---|---|
enablecfoutputonly | any | No | Yes or No. When set to Yes, cfsetting blocks output of HTML that resides outside cfoutput tags. |
requesttimeout | number | No | number of seconds. Time limit, after which CFML processes the page as an unresponsive thread. Overrides the timeout set in the Lucee Administrator. |
showdebugoutput | boolean | No | Yes or No. When set to No, showDebugOutput suppresses debugging information that would otherwise display at the end of the generated page.Default is Yes. |