Basically I have a form that I use to submit data to a database. this works fine. My problem is when I try to redirect the user to a your request has been submitted page. I tried setting a var to do this:
<%
sent = 0
code
sent = 1
if sent = 1 then
response.redirect("page"
%>
but all it does is go to the redirect page without letting the user fill out the form.
i was thinkink to use something like onclick redirect, but i am not sure how to do this.
any help would be appreciated
<%
sent = 0
code
sent = 1
if sent = 1 then
response.redirect("page"
%>
but all it does is go to the redirect page without letting the user fill out the form.
i was thinkink to use something like onclick redirect, but i am not sure how to do this.
any help would be appreciated