Are you sure it's not a browser issue.  How many rows are being generated.
I've here some browsers have trouble with lots of tables in the HTML.



-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 03, 2002 11:59 AM
To: CF-Talk
Subject: RE: Infinite loop... (continued)


No..


Not sure why the code didn't paste, here it is again:
<cfoutput>
<table border="1">
<cfloop query="wine">
        <cfquery name="hotelWine" datasource="#request.dsn#">
        SELECT h.hotel_id, h.name, h.location
        FROM hotel h, hotel_wine hw
        WHERE h.hotel_id = hw.hotel_id
        AND hw.wine_id = #wine.wine_id#
        ORDER BY location, name
        </cfquery>
<tr><td>#wine.name# - #wine.type#</td></tr>
<tr>
        <td>
                <table border="1">
                <cfloop query="hotelWine">
                <tr><td>#hotelWine.name#, #hotelWine.location#</td></tr>
                </cfloop>
                </table>
        </td>
</tr>
</cfloop>
</table>
</cfoutput>


On Tue, 3 Sep 2002, Ben Johnson wrote:

> Todd,
>       Is this the <cfdump> code again?
>
>
> Ben Johnson
> Information Architect
> www.architekture.com
> [p] 720.934.2179
>
>
>
> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 03, 2002 9:54 AM
> To: CF-Talk
> Subject: Infinite loop... (continued)
>
> Alright, I give up... for whatever reason this is spinning the page into
>
> an infinite loop.  It half renders and then, blamf, it's gone again and
> half renders then, bamf, it's gone again... then...  good lord.  I'm
> seriously beginning to wonder if anyone at Macromedia has actually
> tested
> CFMX on a celeron pc.  I've done this code many times elsewhere and had
> no
> problems, but ... @ work, we just got new dev machines and ... it's just
>
> spinning out of control.
>
> The code:
>
>
>

______________________________________________________________________
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to