you havn't given us enough Seona, <cfflush> can't be inside any tag where
output might be delayed, like a cfsavecontent, a custom tag etc

Elliot
"Seona Bellamy" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I'm using CF5. The source code of the page is rather long, so I've only
> included a fragment:
>
>   <tr valign="top">
>     <th><label for="Colours">Colours in range</label></th>
>     <td><input name="Colours" id="Colours" type="text" <cfif
> isDefined('FORM.Colours')>value="#FORM.Colours#"</cfif> /></td>
>     <th><label for="Sizes">Sizes in range</label></th>
>     <td><input name="Sizes" id="Sizes" type="text" <cfif
> isDefined('FORM.Sizes')>value="#FORM.Sizes#"</cfif> /></td>
>   </tr>
> <cfflush>
>   <tr valign="top">
>     <th><label for="CostPrice">Cost Price</label></th>
>     <td><input name="CostPrice" id="CostPrice" type="text" <cfif
> isDefined('FORM.CostPrice')>value="#FORM.CostPrice#"</cfif> /></td>
>     <th><label for="SupplierPrimeID">Primary Supplier</label></th>
>     <td>
> <select name="SupplierPrimeID" id="SupplierPrimeID">
> <option value="0">Select a Supplier</option>
> <cfloop query="qry_GetAllSuppliers">
> <option value="#qry_GetAllSuppliers.ID#" <cfif
> isDefined('form.SupplierPrimeID')><cfif form.SupplierPrimeID eq
>
"#qry_GetAllSuppliers.ID#">selected</cfif></cfif>>#qry_GetAllSuppliers.Compa
> nyName#</option>
> </cfloop>
> </select>
> </td>
>   </tr>
>
> The second row contains the first of the dynamic dropdowns, so I thought
> that if I output everything that had been generated up to that point, it
> might ease the bottleneck a little. And as I said, I know for a fact that
I
> have no custom tags of my own devising wrapped around this code.
>
> If you need to see more of the code, let me know and I'll send you the
files
> off-list.
>
> Cheers,
>
> Seona.
>
> > -----Original Message-----
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] Behalf Of Peter
> > Tilbrook
> > Sent: Friday, 13 August 2004 2:39 PM
> > To: CFAussie Mailing List
> > Subject: [cfaussie] Re: <cfflush>: where does it go?
> >
> >
> > Shoot back the source code. It could be a simple matter of placing
> > your CFFLUSH tag in the wrong place, although there are restrictions
> > on where you can use CFFLUSH. Also are you using CF5 or MX?
> >
> > ---
> > You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
> > To unsubscribe send a blank email to
> > [EMAIL PROTECTED]
> > Aussie Macromedia Developers: http://lists.daemon.com.au/
> >
> >
> > ---
> > Incoming mail is certified Virus Free.
> > Checked by AVG anti-virus system (http://www.grisoft.com).
> > Version: 6.0.733 / Virus Database: 487 - Release Date: 2/08/2004
> >
>
> __________________________________________________________________
> << ella for Spam Control >> has removed Spam messages and set aside Later
> for me
> You can use it too - and it's FREE!  http://www.ellaforspam.com
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.733 / Virus Database: 487 - Release Date: 2/08/2004
>
>



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/

Reply via email to