hi!
ist es moeglich aus einem frameset ein perlscript per
<meta http-equiv="refresh" content="0; URL=http://mySite/cgi-bin/error.pl">
aufzurufen, welches eine html.datei "OnTop" ausgibt?
Location wird correct verlinkt jedoch nicht target "OnTop"
ja ich verwende normalerweise keine frames, es handelt sich hierbei um ein chatscript html_chat und ich sollte diverse abfragen durchfuehren um stoerchatter (anonymous) ausfiltern zu koennen, auch ohne javascript
##################
#!/usr/bin/perl -w
use strict;
use CGI;
my $cgi=new CGI;
use CGI::Carp qw(fatalsToBrowser);
my $url="http://mySite/Error.html";
my $frame="_top";
Error();
sub Error()
{
print "Window-target: $frame\n";
print "Location: $url\n\n";
}
###################
ew