cfsilent

Description

Suppresses all output that is produced by the CFML within the tag's scope.

Category

Page processing tags

Syntax

<cfsilent> 

See also

cfcache, cfflush, cfheader, cfhtmlhead, cfinclude, cfsetting

Example

<html>
<head>
<title>cfsilent</title>
</head>

<BASEFONT face = "Arial, Helvetica" size = 2>
<body bgcolor = "#FFFFD5">

<H3>cfsilent</H3>

<!--- This example shows the use of cfsilent --->

<cfsilent>
<cfset a = 100>
<cfset b = 99>
<cfset c = b-a>
<cfoutput>#c#</cfoutput>
...
</cfsilent>
<P>
Even information within cfoutput tags does not appear within
the cfsilent block.<BR>
b-c = <cfoutput>#c#</cfoutput>
</P>
</body>
</html>