OK, then you'll have to copy the results to SESSION scope and call them from
there.

Something along the lines of:
In the first page:
<cflock scope="SESSION" timeout="10" type="exlusive">
    <cfset SESSION.myQuery = duplicate(myQuery)>
</cflock>

Then reference it on the second page by copying to local scope.
<cflock scope="SESSION" timeout="10" type="readonly">
    <cfset myQuery = duplicate(SESSION.myQuery)>
</cflock>

HTH,
Sharon
----- Original Message -----
From: "Dave Carabetta" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Saturday, March 16, 2002 12:47 PM
Subject: Re: One call for two pages?


> > How about having the top frame submit to itself and use javascript to
> submit
> > to the bottom frame?  Something like:
> >
> > <cfif isDefined("FORM.formSubmit")>
> >     <script language="javascript">
> >     <!--
> >         function submitForm() {
> >              myForm.target="otherFrame";
> >              myForm.action="other_action.cfm";
> >              myForm.submit();
> >          }
> >      -->
> >     </script>
> > </cfif>
>
> I see what you're saying, but that's not what I'm trying to solve. I know
> how to get one frame to submit another frame -- that's easy. Essentially
> this comes down to trying to force one CF Server call's results to be
> available for a second page. It doesn't have anything to do (as far as I
can
> figure out) with JavaScript. This is a huge WDDX packet, so storing it in
a
> hidden field in one frame is not feasible either.
>
> Thanks though,
> Dave.
> 
______________________________________________________________________
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
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