Flushes currently available data to the client.
<cfflush>
cfflush();
Outputs 'foo' to the browser approximately 1 second before 'bar'
writeOutput( "<div>foo</div>" );
cfflush();
sleep( 1000 );
writeOutput( "<div>bar</div>" );
Outputs 'foo' to the browser approximately 1 second before 'bar'
<div>foo</div>
<cfflush /> <cfsleep time="1000" />
<div>bar</div>
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.