Intemediate page displaying message

Go4Expert Member
10Apr2007,20:51   #1
Rakish's Avatar
Dear perl Gurus,

I want to have a page that displays the message "1 item successfully deleted" which should be in between two pages and should only be displayed for 3-5 seconds.


Also How can I have the loading file bar with percentage of file uploaded.

Thank you.
Team Leader
11Apr2007,10:24   #2
pradeep's Avatar
You can use the META tag in the head section, or you can use javascript.

Code: HTML
<META HTTP-EQUIV='Refresh' CONTENT='<seconds>;<URL>'>

Code: JavaScript
function goToURL()
{
  location.href = 'index.html';
}

window.setTimeout('goToURL()',3000); //3 secs