If the CF is processing in 100 Ms then the problem lies with the HTML. Do you have a nested table layout? If you do avoid it.
Also if your creating say 1000 rows for the page, consider changing it to mulitple tables i.e every 50 results create a new table. This should mean the data appears in chunks of 50. You can also use cfflush with this but I don't think it would be required in this situation. Something like this just above your </cfoutput> should help: <cfif currentrow mod 50 EQ 0> </table> <table> </cfif> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:267275 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

