[thelist] Redirect AFTER Page loaded with ASP

brian cummiskey brian at hondaswap.com
Thu Sep 16 15:53:13 CDT 2004


Rob Smith wrote:

>Hi 
>
>I'm looking for cleaver ways to redirect a user AFTER stuff has been written
>to a page in ASP. 
>
>Typically you can't by way of response.redirect("somepage.asp"). If you do
>this after you write stuff to the page, you get an error.
>
you can't... at least not with ASP, or any server side language.  
re-directs are done using headers.

I'd suggest using a meta tag.

<meta http-equiv='refresh' content='2; url=http://www.yourpagehere.com' />


More information about the thelist mailing list