Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Rolling CFOUTPUT

Status
Not open for further replies.

ded

Programmer
Nov 3, 2000
41
0
0
GB
Does anyone know how to make a CFOUTPUT output the results of a query one line at a time instead of once the whole page is processed. I have a custom tag which checks some data which can take time and it would be good to output each line as it is checked.

Cheers,
Duncan
 
If you are using CF 5, you can use the <cfflush> tag and put a small interval

e.g.

<cfflush interval=&quot;5&quot;>

<cfoutput query = &quot;blah&quot; etc....>
 
Thanks but unfortunately I am using CF 4.0.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top