I am working on a coldfusion page in which I am displaying the Query result on the screen in a table.But before displaying the data in the cells I am performing some checks on it.So by the time the browser displays the 100 records on the screen it eats up lot of time. I tried creating table for each row so that the data is displayed as it fetches it but here the problem is aligning successive tables.So the screen is cluttered as there is no alignment of the tables. Following is the sample code which I tried:- <cfoutput query="Counter" startrow="1" maxrows="100"> <table> <tr> <td>.....</td> <td>.....</td> </tr> <tr> <td>.....</td> <td>.....</td> </tr> </table> </cfoutput>
Is there any other alternative to this? Thanks in advance, Hussain. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| 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:268792 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

