Submit button and tables

C

Chris Wiles

I have form fields in different tables.

How can I link Submit button to send info in those different tables?

Do the tables need to be grouped?
 
R

Ronx

The <form> and </form> tags for the complete form need to be outside
*all* the tables:
<form method="post" action="whatever.asp">
<table id="t1">
<!--form fields-->
</table>
<table id="t2">
<!--form fields-->
</table>
<!--more tables-->
<table id"=t374">
<tr><td><input type="submit"></td></tr>
</table>
</form>

Or you could group the form fields using <fieldset> form fields
</fieldset>
( Insert->Form->Group box )
See http://192.168.1.208/feedback/default.asp for an example of this.
 
C

Chris Wiles

Thank you Ron

Ronx said:
The <form> and </form> tags for the complete form need to be outside
*all* the tables:
<form method="post" action="whatever.asp">
<table id="t1">
<!--form fields-->
</table>
<table id="t2">
<!--form fields-->
</table>
<!--more tables-->
<table id"=t374">
<tr><td><input type="submit"></td></tr>
</table>
</form>

Or you could group the form fields using <fieldset> form fields
</fieldset>
( Insert->Form->Group box )
See http://192.168.1.208/feedback/default.asp for an example of this.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top