<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.
This tag may have a body.
This tag is also supported within <cfscript>
<cfsetting
enablecfoutputonly=any
info=string
listen=boolean
showdebugoutput=boolean
requesttimeout=number
><!--- body --->[</cfsetting>]
Examples
<cfsetting enablecfoutputonly="true">
<cfset a = "Save">
<cfset b = "Tree">
<cfset c = a & b >
Save Water <cfoutput>#c#</cfoutput>
See also
- Debugging
- WriteOutput()
- <cfoutput>
- <cfprocessingdirective>
- <cfsilent>
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)