Auto redirection in Perl

Hello,

I am currenlty using a link to go back to previous page in Perl-CGI.
Now I want to auto redirect the page after 5 seconds. Can anybody help!!!!

This really isn't a perl question -- it's a web-programming question. There's nothing specific to Perl. You can do

sleep 5;
print redirect("Location: $newurl\n");

See CGI - perldoc.perl.org for more info.