Click to See Complete Forum and Search --> : Render page and THEN redirect...
gorden
03-17-2005, 04:11 PM
I have an ASP upload page that is invoked by a form generated within a CDOSYS email. After the ASP executes, the page renders HTML to the user. I want to be able to add a redirect to another page AFTER that HTML displays. All clues welcome. Been struggling with this for DAYS Can email gorden@bnl.gov.
phpnovice
03-17-2005, 08:39 PM
To what end? There is always the following that causes redirection after a specified period of time to another URL. I use it for when JavaScript is disabled:
<noscript>
<meta http-equiv="refresh" CONTENT="0;URL='noscript.htm';">
</noscript>
gorden
03-18-2005, 07:30 AM
Thank you for your reply.
The purpose is that the html is a response to the successful upload of the file along with a link to the file that was uploaded. The redirect is to continue the application's process; that is, to perform more ASP/HTML. In this instance, to return data from a table, send another auto-generated email and continue...
I will try your suggestion. Here's hoping it works...
Patty
phpnovice
03-18-2005, 07:35 AM
Yep, sounds like the META tag I posted is what you want -- without the NOSCRIPT tags, of course. :D
gorden
03-18-2005, 08:27 AM
The meta tag works like a charm.
Thank you so much.
phpnovice
03-18-2005, 03:42 PM
Cheers.