Help for this page

Select Code to Download


  1. or download this
    use CGI;
    my $q = new CGI;
    ...
    # or roll your own header like this 
    print "Window-Target: ResultsWindow
    Content-Type: text/html\n\n";
    
  2. or download this
    <a href="/cgi-bin/script.pl?target=SomeFrame&other=stuff">Click Here</
    +a>
    
    # and in the script
    my $target = $q->param('target');
    print $q->header(-target => $target );