Forum Moderators: open
When the button is clicked, you are redirected to a thank you/confirmation page which is supplied by another website "http://www.toronto.com/cgi-bin/" . When you click okay the page redirects to the other sites main URL. The form is sent to the proper email address, but now you're taken to a totally different site.
How can I make the confirmation page be part of the same website? I've designed the layout, but need to know who to redirect all the info to it.
This is where I believe my problem lays>>
{<form name=formToValidate onSubmit="return checkrequired(this)"
action=http://www.toronto.com/cgi-bin/uniform method=post>}
Welcome to WebmasterWorld [webmasterworld.com]
You are right, the action attribute controls which page the form data is submitted to.
So you want..
<form name="formToValidate" onSubmit="return checkrequired(this)"
action="http://whatever" method="post">
Do you know how I'd create a page like that? I already designed and completed the confirmation page, along with the rest of the site... It's just this that's got me stumped. All I want to do is to have the whole form sent to a specific email address while redirecting to the confirmation pages that I've already designed.
Thanks a bunch!