I have an html page that has a form on it. The action of the form is a mailto to send the form contents to me. I'm sure this is an easy question, but how do I have it show another page after the email has been sent?
Printable View
I have an html page that has a form on it. The action of the form is a mailto to send the form contents to me. I'm sure this is an easy question, but how do I have it show another page after the email has been sent?
Are you using any kind of script for this?
not yet. I am trying to keep it simple.
I doubt it's possible to do a redirect without a script, but someone might prove me wrong.
I can do scripts if I have to. That's not the problem. I just don't know how to do what I need to do.
What do you have available to you? CGI, PHP, ???
CGI
Try this
Code:<form method="post" action="mailto:myass@bull****.com">
<input type="submit" value="GO!!!!!" onClick="document.location.href='aaa.html';">
</form>
Perfect!! Thank you
Interesting. I thought doing that would just skip the submit. Nice. :)
Probably a snafu :p