Lucee Tag Reference
Tag <CFSILENT>
Suppresses all output that is produced by the CFML within the tag's scope.
Body
This tag must have a body.
Example
<cfsilent [bufferoutput="boolean"]> </cfsilent>
This tag is also supported within cfscript
<cfscript> silent [boolean expression] { } </cfscript>
Attributes
The attributes for this tag are fixed. Except for the following attributes no other attributes are allowed.
Name | Type | Required | Description |
---|---|---|---|
bufferoutput | boolean | No | if set to true (default) the output written to the body of the tag is buffered and in case of a exception also outputted. if set to false the content to body is ignored and not disabled when a failure in the body of the tag occur. |