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.
You can use the META tag in the head section, or you can use javascript. HTML: <META HTTP-EQUIV='Refresh' CONTENT='<seconds>;<URL>'> Code: function goToURL() { location.href = 'index.html'; } window.setTimeout('goToURL()',3000); //3 secs