Wynd
Nov 24th, 2001, 03:47 PM
Is it possible to submit a form using a link, instead of a submit button?
crptcblade
Nov 24th, 2001, 05:25 PM
sure...
<form name="frmMain" method="GET" action="someSortOfCGIorWhatNot.asp">
<a href="javascript:frmMain.submit()">Click here!</a>
</form>
the link doesn't really need to be within the form tags, but I thought it looked nicer;)
:)