Click to See Complete Forum and Search --> : Delay Redirect


vmahalin
06-20-2003, 10:49 PM
I have a html page which submits to a asp page, where the database procs take place.....but it also displays some database details after the transaction........and I want to redirect back to the html page...with some DELAY.


Can anyone tell me how to do that........thanks

Ribeyed
06-21-2003, 05:02 AM
Hi,

<%
Response.AddHeader "Refresh", "35;URL=http://www.yoururl.com/"
%>


Would reidrect you to your page in 35 seconds.

hope this helps