The CFFLUSH tag flushes ColdFusion's output buffer. Normally, Coldfusion waits until
the entire web page is built before sending to the web browser. You can use this tag to
force ColdFusion to send what it's created so far. By using the optional INTERVAL attribute,
you can control (based on the number of bytes) precisely when to do the flush.
Syntax:
<CFFLUSH
INTERVAL="integer number of bytes">
IMPORTANT:
Once you use a CFFLUSH tag on a ColdFusion page, from that point on, you cannot
use any ColdFusion tags that modify the HTTP header.
These include the cfcontent, cfcookie, cfform, cfheader,
cfhtmlhead, and cflocation tags.
|