| Author |
Submit Form by clicking on an image
|
|
| Ice Man 2004-07-22, 8:55 am |
| Hi all
How Can I submit a form by clicking on an image instead of the submit
button?
Thanks
| |
| Elie Grouchko 2004-07-22, 8:55 am |
| 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
>
>
| |
| Stuart Palmer 2004-07-23, 3:55 am |
|
"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...
>
>
| |
| Ice Man 2004-07-23, 3:55 pm |
| 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...
>
> 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/
>
>
>
| |
| Bã§TãRÐ 2004-07-27, 3:55 am |
| 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...
>
|
|
|
|