CFSILENT  
Description

Suppresses output produced by CFML within a tag's scope.

 
Category

Data output tags, Page processing tags

 
Syntax
    <cfsilent>
...
</cfsilent> 

  
 
See also

cfcache, cfflush, cfheader, cfhtmlhead, cfinclude, cfsetting

 
Usage

This tag requires an end tag.

 
Example
<h3>cfsilent</h3>

<cfsilent>
   <cfset a = 100>
   <cfset b = 99>
   <cfset c = b-a>
   <cfoutput>#c#</cfoutput>
</cfsilent>

<p>Even information within cfoutput tags does not display, within a 
cfsilent block.<br>
b-c = 
<cfoutput>
   #c#
</cfoutput>
</p>