|
1. Click here to download the sample file templates you can use for your forms.
2. Create your html form file. Each field on the form must have a unique name. Feel free to modify the template you downloaded.
3. Modify the downloaded response page (response.html) that the user is sent to after submitting the form.
4. Modify the error page (invalid.html) to direct users to if they did not complete the required fields.
5. Using NotePad, WordPad or another text editor, modify the downloaded "contact.asp" file. This configuration file will take the information submitted on the form and process it into an e-mail message. The file is commented - modify the following sections:
a. Form Fields - modify the first section to reflect your field labels and field names per your form.
b. Required Fields - this string of field names are checked to insure that an entry has been made (required fields). If any field listed here is left blank, the user will sent to the invalid.html page.
c. Recipient & Subject - revise the AddRecipient with a valid e-mail address hosted with us. Also, modify the Subject if you desire.
6. Make sure your html FORM ACTION is as follows:
<FORM ACTION="contact.asp" METHOD=POST>
When the user clicks on the Submit Form button, the form will call the contact.asp file to process the information and send you a message.
7. Upload the files to the server and test:
- contact.html (form)
- response.html
- invalid.html
- contact.asp (configuration file)
NOTE: The forms will not process unless you enter a valid e-mail address in the form.
If you need further assistance, please send a message to: support@inno-tech.com
|