You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
364 B
Perl

#!/usr/local/bin/perl
use CGI;
$co = new CGI;
print $co->header,
$co->frameset(
{-rows=>'40%,60%'},
$co->frame
({
-name=>'top',
-src=>'http://www.yourserver.com/username/cgi/a.htm'
}),
$co->frame
({
-name=>'bottom',
-src=>'http://www.yourserver.com/username/cgi/b.htm'
})
);