ok, ive tried 2 forms now, and one works and the other doesnt. the difference is one is a nested table in the form(doesnt work) and the other is a plain old form(works). ive tried removing all the nested table junk from it and it still doesnt work and i cant seem to figure out why it isnt working. could someone please take a look at this and let me know whats wrong, or point me in the right direction. ive been trying to get this going for like 3 hours now and done my google homework and i cant find anything.
working one:
not working one:
working one:
Code:
<form method="post" action="/cgi-bin/SendMail.asp">
Complete this form and click the submit-button. We will answer your
questions as soon as possible.
<br><br>
Your Name: <br>
<input type="text" size="25" name="name"><br>
Your Email:<br>
<input type="text" size="25" name="email"><br>
Your Address:<br>
<input type="text" size="25" name="address"><br>
Enter your comment: <br>
<textarea name="body" cols="40" rows="15" Wrap="PHYSICAL"></textarea>
<br>
<input type="submit" value=" Submit ">
</form>
not working one:
Code:
<form method="post" action="/cgi-bin/SendMail.asp">
<table cellpadding="4" cellspacing="0" border="0" align="center" class="contactForm">
<tr>
<td>Legal Company Name:</td>
<td><input type="text" name="txtLegCompanyName" /></td>
</tr>
<tr>
<td>DBA Name:</td>
<td><input type="text" name="txtDBAName" /></td>
</tr>
<tr>
<td>Contact Name:</td>
<td><input type="text" name="txtcontactname" /></td>
</tr>
<td>Address 1:</td>
<td><input type="text" name="txtAddress1" /></td>
</tr>
<tr>
<td>Address 2:</td>
<td><input type="text" name="txtAddress2" /></td>
</tr>
<tr>
<td>Phone/Fax:</td>
<td><input type="text" name="txtfaxphone" /></td>
</tr>
<tr>
<td>Type of Corporation (S-corp, C-corp, LLC, etc.):</td>
<td><input type="text" name="txtcorptype" /></td>
</tr>
<tr>
<td>Number of Locations:</td>
<td><input type="text" name="txtnumlocations" /></td>
</tr>
<tr>
<td>Number of Employees:</td>
<td><input type="text" name="txtnumemployees" /></td>
</tr>
<tr>
<td>Do you currently have a retirement plan?</td>
<td><input type="text" name="txtretirementplan" /></td>
</tr>
<tr>
<td>----</td>
</tr>
<tr>
<td>If yes:</td>
</tr>
<td>Total Assets:</td>
<td><input type="text" name="txtassest" /></td>
</tr>
<tr>
<td>Annual Deposits:</td>
<td><input type="text" name="txtdeposits" /></td>
</tr>
<tr>
<td>Number of Participants:</td>
<td><input type="text" name="txtparticipants" /></td>
</tr>
<tr>
<td>Current Vendor:</td>
<td><input type="text" name="txtvendor" /></td>
</tr>
<tr>
<td>----</td>
</tr>
<tr>
<td>If No:</td>
</tr>
<td>Will there be a company match?</td>
<td><input type="text" name="txtcompanymatch" /></td>
</tr>
<tr>
<td>Heartland Rep Nme:</td>
<td><input type="text" name="txtrepname" /></td>
</tr>
<tr>
<td>Rep Phone/Fax:</td>
<td><input type="text" name="txtrepphonefax" /></td>
</tr>
<tr>
<td>Rep Email:</td>
<td><input type="text" name="txtrepemail" /></td>
</tr>
</table>
<input type="submit" value="Submit"/>
</form>