The way I understand it, the key to frames with fusebox is that each
frame call is made back to the original fusebox.  For example:


<cfswitch expression = "#fusebox.fuseaction#">

        <cfcase value = "main">
                <cfinclude template="setframes.cfm">
        </cfcase>
        <cfcase value = "frameone">
                <cfinclude template="dsp_frameone">
        </cfcase>
        <cfcase value="frametwo">
                <cfinclude template="dsp_frametwo">
        </cfcase>
</cfswitch>

And then your setframes.cfm file might look like this:

<CFOUTPUT>
        <FRAMESET COLS="*,50">
                <FRAME NAME="FrameOne" SRC="#SELF#?fuseaction=frameone">
                <FRAME NAME="FrameTwo" SRC="#SELF#?fuseaction=frametwo">
        </FRAMESET>
</CFOUTPUT>

I use this with a proposal generation type application.  The user
actually has four frames, one to search in, one to display search
results, one to display parts added from the search to the proposal, and
one frame to summarize the proposal.

PROBLEM:  When a user clicks the REFRESH button on their browser (for
whatever reason!), the frameset is redrawn and the user looses wherever
they were (if they submitted multiple pages in a multi-page form, they
are back at the beginning and their work is lost!).

Any advice?

Thanks,

Russell


-----Original Message-----
From: Gary [mailto:[EMAIL PROTECTED]] 
Sent: Friday, May 10, 2002 4:06 AM
To: Fusebox (E-mail)
Subject: FB3, frames and single threaded session locks

Hi

Can anyone confirm whether they are successfully using FB3, frames and
single threaded session locks together.
It appears if you use cfmodule to include a fuse i.e.

<cfmodule template="#fusebox.rootpath##self#"
FUSEACTION="#XFA.Formstoday#">

you are susceptible to various time out errors( on 4.5.2 at least), even
though your code and queries run fast.

Any comments

Cheers

==^================================================================
This email was sent to: [email protected]

EASY UNSUBSCRIBE click here: http://topica.com/u/?bUrFMa.bV0Kx9
Or send an email to: [EMAIL PROTECTED]

T O P I C A -- Register now to manage your mail!
http://www.topica.com/partner/tag02/register
==^================================================================



Reply via email to