- Core SFTP: Install and Configure
- Creating Forms for the Web
- Dreamweaver Secure Site Configuration Setup
- Fetch SFTP: Install and Configure
- Guidelines and Tips for Developing a Student Organization Web Site
- iCMS Webguide
- Web: Creating Interactive Navigation
- Web Directory Setup
- Web Image Capture Copyright and Citation Considerations
- Web Page Basics
Links for resources, services, and feedback:
Includes Information & Library Services related links
In order to create a web form that works, you not only need to create a web form, but direct that form to send the information to the e-merge CGI script, which then looks for the merge.txt file that you create that tells it what to do with the information.
Simple Form Example:

Complex Form Example:

Create a merge.txt file for your form:


Create a display.txt file for your form:

/~rrichar2/form/merge.txt&display=
/~rrichar2/form/display.txt">
Publish all three files to the same web directory:
After the form has been submitted you can also create a "Thank you" screen, called the display.txt file, that lets the user know that they have successfully sent their information. The basic process is as follows:
Create a form using HTML:- Use Dreamweaver to create basic form elements
- Never put spaces in any web file names
- Only use letters and numbers in file names
- Layout your form and name your variables FIRST
- Use simple names for all form objects
Simple Form Example:

Complex Form Example:

Create a merge.txt file for your form:
- Include all variables in the form of an email message
- Can be done in Dreamweaver, saved as .txt file
- Place variable names in brackets: [variable]


Create a display.txt file for your form:
- This is a simple web page that appears after submission
- It is important to tell the user the submission worked!
- Can be done in Dreamweaver, then saved as .txt file
- Place variable names in brackets: [variable]
- (to make your feedback customized!)

Connect your web form with e-merge:
Edit your HTML form to tell it what action to take:
<form name="name" method="post" action="http://abacus.bates.edu/cgi-bin/e-merge
/path to files/merge.txt&display=
/path to files/display.txt">
"name" = a name for your form (whatever makes sense)
/path to files/ = location on abacus of merge.txt & display.txt
http://abacus.bates.edu/~rrichar2/form/
EXAMPLE FORM TAG:
<form name="formTEST" method="post" action="http://abacus.bates.edu/cgi-bin/e-merge/~rrichar2/form/merge.txt&display=
/~rrichar2/form/display.txt">
Publish all three files to the same web directory:
- index.html (HTML form), merge.txt, display.txt
- Never put spaces in any web file names
- Only use letters and numbers in file names
- Be sure permissions are set so that others may read
- Try every different combination of responses
- Be sure that your variables are coded correctly
- Always make sure the merge.txt file has your email address in it for testing purposes!
