Here is an example of the code and some example forms.

Please enter the Name to search under(John Doe)
Please enter the Mod to search under(A1)
Please enter the Date to search under(02-NOV-90)
The forms above each call an .htf form located on bach.  The form layout for this page
looks like the following:


<table align = center>
<form action = "http://bach.cs.pitt.edu:8081/Example/name.htf" method = "post">
<tr>
<td>Please enter the Name to search under</td>
<td><input type = "textbox" size = 20 name = "thename"></td>
<td><input type = "submit" value = "Submit"></td>
</tr>
</form>

<form action = "http://bach.cs.pitt.edu:8081/Example/module.htf" method = "post">
<tr>
<td>Please enter the Mod to search under</td>
<td><input type = "textbox" size = 20 name = "themod"></td>
<td><input type = "submit" value = "Submit"></td>
</tr>
</form>

<form action = "http://bach.cs.pitt.edu:8081/Example/dates.htf" method = "post">
<tr>
<td>Please enter the Date to search under</td>
<td><input type = "textbox" size = 20 name = "thedate"></td>
<td><input type = "submit" value = "Submit"></td>
</tr>
</form>

</table>

	Please note that in your forms' action clause you will want to use relative 
addressing for your files, so that they might look like: action = "name.htf".

	Below I have listed three links.  Each link will display the code for the 
equivalent WebBase page listed above.
name.htf
module.htf
date.htf
An Explaination of the .htf Forms