You can't do this with CGI, or any other server-side mechanism. HTTP works by call and response: the browser requests content from the server to fill a particular slot, and the server provides. The solution, therefore, is to make the browser ask for the other frame as well.

Which is a (boo) javascript thing. When you return the main frame, put something like this in the header:

<script language='javascript'> top.lefthandframe.location.href = '[url]'; </script>

This will of course only work for people whose browsers can do (simple) javascript, and who haven't switched it off, but in most cases if the browser can do frames it can do this.

The only alternative is to make your script write a new frameset first. That's more reliable, but if you end up with three cgi invocations to make one page, then it's time to reconsider the page design.

and anyway, if you're changing both frames at the same time, why not just put them on one page?


In reply to Re: Redirect to New Frames by thpfft
in thread Redirect to New Frames by Spenser

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.