Dave Carabetta wrote: > > The problem with that is two-fold. First, I'm in a clustered environment, so > I can't use session variables. Second, I am receiving a 15K WDDX packet > back from a Python server that I am de-serializing. So setting the packet to > a client variable isn't reasonable either. The resulting variable would be > huge and a burden on the CF server because it would inherently be retrieved > on every CF call within the application.
In that case: let the submit process create 2 pages. First create the bottom frame and put it in a variable. Then the top frame and include some code like: <script language="Javascript"> htmlbody = JSStringFormat(bottomframe); top.frames[1].location='about:blank'; top.frames[1].document.write(htmlbody); </script> This should write the htmlbody into the other frame. Jochem ______________________________________________________________________ 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

