<class home>  <forms>   <back   next>

Submit and Reset Buttons

buttons: are what you click to reset or send the information on the form


ex.

To make a button: Dreamweaver

1. Put your cursor where you want it in the document window.

2. Select Insert>form object>Button from the main menu.
Or click on the form button in the object panel: form section:

3. In the Properties panel:
-give it a name.
-give it a label: this is what text you see on the button
-select the button type: submit form, reset form, or none (to call Javascript or do something else)




In HTML

Typing it in.

ex.

To get the example above, put this into the <body> section of your html:

<form name="form6" method="post" action="">
<input type="submit" name="Submit" value="ok">
<input type="reset" name="reset" value="start over">

</form>