If we are talking about outputting a ton of records on the screen, then you
can speed up a process somewhat if you are formatting them in a table:

Instead of:

<table>
<cfoutput query = "myquery">
<tr>
        <td>#data#</td>
</tr>
</cfoutput>
</table>

you can do this:

<cfoutput query = "myquery">
<table>
<tr>
        <td>#data#</td>
</tr>
</table>
</cfoutput>


At 09:57 PM 5/29/00 -0400, you wrote:
>> Is there a way in ColdFusion to present the browser with
>> output as a page executes instead of waiting until the page
>> has finished executing?
>>
>> In ASP this works by setting Response.Buffer = True
>
>Unfortunately, there is no analogous capability in CF; it's one of the few
>areas where CF doesn't have functionality found in ASP.
>
>There are ways to simulate this by using frames or JavaScript or page
>refreshes, but they tend to be a bit messy.
>
>Dave Watts, CTO, Fig Leaf Software
>http://www.figleaf.com/
>voice: (202) 797-5496
>fax: (202) 797-5444
>
>---------------------------------------------------------------------------
---
>Archives: http://www.eGroups.com/list/cf-talk
>To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
> 

------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to