in reply to CGI redirect to new window/frame

A simple redirect can be handled from perl with CGI->redirect:

print $CGI->redirect(-uri => 'http://YourNewUrlHere');

But what you describe sounds like you probably need to use some javascript in your web page and Perl won't help you. Try googling 'javascript location'.

Replies are listed 'Best First'.
Re^2: CGI redirect to new window/frame
by jithint (Novice) on Nov 10, 2009 at 13:42 UTC
    does redirect take arguments like -target or -uri??