![]() |
Submit Form by clicking on an image
Hi all
How Can I submit a form by clicking on an image instead of the submit button? Thanks |
Re: Submit Form by clicking on an image
Use JavaScript code that will submit the form as a result of the click
event: <html> <head> <script type="text/javascript"> function SubmitForm() { document.getElementById("form1").submit(); } </script> </head> <body> <form id="form1" action="page2.htm" method="post"> <img src="" onclick="SubmitForm()"> </form> </body> "Ice Man" <ehc00@hotmail.com> wrote in message news:%23o5Enu9bEHA.4032@TK2MSFTNGP11.phx.gbl... > Hi all > > How Can I submit a form by clicking on an image instead of the submit > button? > > Thanks > > |
Re: Submit Form by clicking on an image
"Elie Grouchko" <egrouchko@hotmail.com> wrote in message news:OIAKNl%23bEHA.2972@TK2MSFTNGP12.phx.gbl... > Use JavaScript code that will submit the form as a result of the click > event: > > <html> > <head> > > <script type="text/javascript"> > function SubmitForm() > { > document.getElementById("form1").submit(); > } > </script> > > </head> > <body> > > <form id="form1" action="page2.htm" method="post"> > > <img src="" onclick="SubmitForm()"> > > </form> > > </body> > Why don't you just use: <input type="image" src="image.jpg" alt="Submit" height="50" width="50" /> Then the form will submit for JS user and non JS users alike.....BTW, how long has ASP been clientsize javascript? :o/ > > "Ice Man" <ehc00@hotmail.com> wrote in message > news:%23o5Enu9bEHA.4032@TK2MSFTNGP11.phx.gbl... > > Hi all > > > > How Can I submit a form by clicking on an image instead of the submit > > button? > > > > Thanks > > > > > > |
Re: Submit Form by clicking on an image
I don't know actually how long but it helps a lot...
"Stuart Palmer" <stuartglenpalmer@ntlworld.com> wrote in message news:833Mc.334$ub4.268@newsfe5-gui.ntli.net... > > "Elie Grouchko" <egrouchko@hotmail.com> wrote in message > news:OIAKNl%23bEHA.2972@TK2MSFTNGP12.phx.gbl... > > Use JavaScript code that will submit the form as a result of the click > > event: > > > > <html> > > <head> > > > > <script type="text/javascript"> > > function SubmitForm() > > { > > document.getElementById("form1").submit(); > > } > > </script> > > > > </head> > > <body> > > > > <form id="form1" action="page2.htm" method="post"> > > > > <img src="" onclick="SubmitForm()"> > > > > </form> > > > > </body> > > > > Why don't you just use: > > <input type="image" src="image.jpg" alt="Submit" height="50" width="50" /> > > Then the form will submit for JS user and non JS users alike.....BTW, how > long has ASP been clientsize javascript? > > :o/ > > > > > "Ice Man" <ehc00@hotmail.com> wrote in message > > news:%23o5Enu9bEHA.4032@TK2MSFTNGP11.phx.gbl... > > > Hi all > > > > > > How Can I submit a form by clicking on an image instead of the submit > > > button? > > > > > > Thanks > > > > > > > > > > > > |
Re: Submit Form by clicking on an image
The image actually works like a submit button when using
<input type="image" name="subButton" src="image.jpg" alt="Submit" height="50" width="50" /> getting the value from the submit button is request.form("subButton.x") OR request.form("subButton.y") Because the button is an image - you are esentially testing to see if the x,y value (height, width) is greater than 0 Hope this help - Bastard On Fri, 23 Jul 2004 17:25:24 +0200, "Ice Man" <ehc00@hotmail.com> wrote: >I don't know actually how long but it helps a lot... > > >"Stuart Palmer" <stuartglenpalmer@ntlworld.com> wrote in message >news:833Mc.334$ub4.268@newsfe5-gui.ntli.net... >> >> "Elie Grouchko" <egrouchko@hotmail.com> wrote in message >> news:OIAKNl%23bEHA.2972@TK2MSFTNGP12.phx.gbl... >> > Use JavaScript code that will submit the form as a result of the click >> > event: >> > >> > <html> >> > <head> >> > >> > <script type="text/javascript"> >> > function SubmitForm() >> > { >> > document.getElementById("form1").submit(); >> > } >> > </script> >> > >> > </head> >> > <body> >> > >> > <form id="form1" action="page2.htm" method="post"> >> > >> > <img src="" onclick="SubmitForm()"> >> > >> > </form> >> > >> > </body> >> > >> >> Why don't you just use: >> >> <input type="image" src="image.jpg" alt="Submit" height="50" width="50" /> >> >> Then the form will submit for JS user and non JS users alike.....BTW, how >> long has ASP been clientsize javascript? >> >> :o/ >> >> > >> > "Ice Man" <ehc00@hotmail.com> wrote in message >> > news:%23o5Enu9bEHA.4032@TK2MSFTNGP11.phx.gbl... >> > > Hi all >> > > >> > > How Can I submit a form by clicking on an image instead of the submit >> > > button? >> > > >> > > Thanks >> > > >> > > >> > >> > >> >> > |
| All times are GMT. The time now is 05:34 AM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.