I have a form which web designers set up on a previous site which I now want to use on my new Actinic site for collecting users' registrations. Basically, I will be producing an ezine promoting my goods and the form is to encourage people to sign up for it. I have two questions:
1. How do I get the form to submit the details to my email address? - currently it is set up with this coding:
<form method="POST" action="sendmail.asp" onsubmit="return FrontPage_Form1_Validator(this)" language="JavaScript" name="FrontPage_Form1">
<input type="hidden" name="_recipients" value="[My email address inserted here]">
I have included the sendmail.asp file within Site 1 and loaded up the form itself as an html page.
The form appears correctly but when you fill it out and click Submit it goes to a HTTP 404 - File not found error.
When I load up the site it comes up with an error in relation to the form which says "[name of form html page] FOOTER LOAD FUNCTION, ON LOAD."
2. Assuming the above can be fixed, is this the best way of going about the exercise of getting people to sign up to the ezine? Or is it better to use another kind of software?
Thanks in anticipation of your help.
1. How do I get the form to submit the details to my email address? - currently it is set up with this coding:
<form method="POST" action="sendmail.asp" onsubmit="return FrontPage_Form1_Validator(this)" language="JavaScript" name="FrontPage_Form1">
<input type="hidden" name="_recipients" value="[My email address inserted here]">
I have included the sendmail.asp file within Site 1 and loaded up the form itself as an html page.
The form appears correctly but when you fill it out and click Submit it goes to a HTTP 404 - File not found error.
When I load up the site it comes up with an error in relation to the form which says "[name of form html page] FOOTER LOAD FUNCTION, ON LOAD."
2. Assuming the above can be fixed, is this the best way of going about the exercise of getting people to sign up to the ezine? Or is it better to use another kind of software?
Thanks in anticipation of your help.
Comment