Attribute for <BUTTON ...>
TYPE = BUTTON | SUBMIT | RESET
<BUTTON ...>TYPEBUTTON(the default) creates a button in the same way does. A button of this type requires a script for it to do anything.<INPUT TYPE=BUTTON>SUBMITcreates a submit button like<INPUT TYPE=SUBMIT>RESETcreates a submit button like<INPUT TYPE=RESET>
<FORM ACTION="../cgi-bin/mycgi.pl" NAME="application">
application date: <INPUT TYPE=TEXT NAME="appdate" SIZE=10>
<BUTTON
TYPE=BUTTON
onClick="document.application.appdate.value=today()"><I>today</I></BUTTON><P>
<BUTTON TYPE=RESET><FONT COLOR=RED>Reset Form</FONT></BUTTON>
<BUTTON TYPE=SUBMIT><STRONG>Send It!</STRONG></BUTTON>
</FORM>
gives us this form (you can also see the today() script in this page):
Copyright 1997-2002 Idocs Inc.