I have the following code in my cgi script. How would I use
target="_top" in the code below so that it would prevent my page from
opening in a frame.
Thanks,
Chris
*************** ******
my $url_1 =
'http://www.company.com/cgi-bin/company.cgi/_address?for_sa le=&_act=query& _dbf=retailol.d bf&_tar=_ret_m& ';
my $query1 = $query->query_string ;
my $query2 = join('',$url_1, $query1);
my $query3 = length($query2) ;
my $query4 = substr($query2, 0,450);
print $query->redirect($quer y4);
*************** ******
target="_top" in the code below so that it would prevent my page from
opening in a frame.
Thanks,
Chris
*************** ******
my $url_1 =
'http://www.company.com/cgi-bin/company.cgi/_address?for_sa le=&_act=query& _dbf=retailol.d bf&_tar=_ret_m& ';
my $query1 = $query->query_string ;
my $query2 = join('',$url_1, $query1);
my $query3 = length($query2) ;
my $query4 = substr($query2, 0,450);
print $query->redirect($quer y4);
*************** ******
Comment