PDA

Click to See Complete Forum and Search --> : Hyperlink Form Submiting


Asterisk
May 23rd, 2000, 05:31 AM
How can I submit the contents of an HTML form using a hyperlink (A HREF) ???

Thanx in advance

Oliver :)

campbell
May 23rd, 2000, 07:11 AM
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_Internet/Internet/World_Wide_Web/CGI___Common_Gateway_Interface/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.

Mark Sreeves
May 23rd, 2000, 03:12 PM
try this:


<FORM method="post" action="whatever.asp" Name="frm1">
<A HREF="javascript:document.frm1.submit()">Click here to submit</A>
</FORM>