How can I submit the contents of an HTML form using a hyperlink (A HREF) ???
Thanx in advance
Oliver :)
Printable View
How can I submit the contents of an HTML form using a hyperlink (A HREF) ???
Thanx in advance
Oliver :)
Oliver, Html form is stored in cgi format. Just set your email address in the CGI and tell the CGI when submit is clicked to perform the action of emailing it you. Check out this site http://dir.yahoo.com/Computers_and_I...rface/Scripts/ There are alot of free scripts you can copy paste and do a little bit of editing most site will tell you how to modify the script.
try this:
Code:<FORM method="post" action="whatever.asp" Name="frm1">
<A HREF="javascript:document.frm1.submit()">Click here to submit</A>
</FORM>