in reply to Re^2: Moving cgi data between variables in differnt frames.
in thread Moving cgi data between variables in differnt frames.

Yes, XMLHttpRequest is Windows-only. It might even be IE-only too.

and then serves back one complete web page with the frames and forms all set with all the required fields.

You're a bit loose on the details -- for example, the script cannot serve both the frame and the framed pages in the same request -- but your idea is doable.

  • Comment on Re^3: Moving cgi data between variables in differnt frames.

Replies are listed 'Best First'.
Re^4: Moving cgi data between variables in differnt frames.
by Fletch (Bishop) on Aug 08, 2005 at 20:46 UTC

    XMLHttpRequest in some flavour is supported by Firefox, Safari, and (not as sure on this one) Opera and is the basis for the new "AJAX" style of web applications.

    See http://script.aculo.us/downloads for a premade JS library, and there's also HTML::Prototype for accessing the JS Prototype library.

    --
    We're looking for people in ATL

Re^4: Moving cgi data between variables in differnt frames.
by sailmaine (Initiate) on Aug 09, 2005 at 15:34 UTC
    Please excuse my ignorance. I realize now that my original question was off subject for this forum, however I appreciate the help and re-direction from all who replied. From further search, the XMLHttpRequest object is supported by Netscape/Mozilla, as well as IE with ActiveX, and is the basis of AJAX (Async JS with Xml), which seems to have been developed to meet just my type of requirment. I Still have to research the JS world to see if my original approach will work, but the AJAX may be a sounder way. If they don't pan out, the Perl CGI should do the trick. Thanks, Irv