How can I get my form page to re-direct to a thank you page after hitting submitting?
I can load a seperate browser with the thank you page loading in but not the same browser as the form to re-direct and load the thank you page. I hope this makes sense.
Any help would be much appreciated.
Sydius
01-15-2004, 04:29 PM
this is how I am referencing the thank you page
<INPUT type="hidden" name="redirect" value="http://www.mysite/thanks.html">
glenngv
01-19-2004, 09:54 AM
I assume you're using a server-side language, not just static html in the form action of the page.
<form action="page.xxx" method="post">
if you're using asp, you just call response.redirect function.
<%
'codes to process input data
'then at the end
Response.redirect(request.form("redirect"))
%>
If you're using other server-side language, I think you should know its counterpart.