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:
[color=blue]
>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...[color=green]
>>
>> "Elie Grouchko" <egrouchko@hotmail.com> wrote in message
>> news:OIAKNl%23bEHA.2972@TK2MSFTNGP12.phx.gbl...[color=darkred]
>> > 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>
>> >[/color]
>>
>> 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/
>>[color=darkred]
>> >
>> > "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
>> > >
>> > >
>> >
>> >[/color]
>>
>>[/color]
>[/color]