Ask a Question related to ASP, Design and Development.
-
Jack #1
Submit Button is now an Image
Hi,
I have a form with input fields and a submit button as following :(don't
focus on mistypings if any)
<FORM action=page.asp method=post>
<Input id=text1 name=text1>
<Input id=submit1 type=submit value=Submit name=submit1>
</Form>
I want to change the standard button by an image, but keep the advantage of
the POST method to pass the parameters to my next page, that is page.asp
How can I do such a thing?
Thanks,
Jack
Jack Guest
-
trouble with replacing submit button with image
I have a simple login form and one submit button. I have replaced the standard grey button with a costum made button using the appropiate Form>Image... -
Submit button
I have a web form with a few text fields some validataion and a submit button. When I click the submit bittin the serverside event does not... -
Image for Submit Button
hey everyone. i'n building a for in which the data from the fields is inserted into a database table. i'm using an image for my submit button, but... -
Can i use a self made image instead of a submit button?
hi, i want to use a submit button i have created in fireworks. but im having some difficulty getting it to submit data in a form! Can this be... -
using submit button and PHP-HELP
Hi, I have a form that has a submit button in it, when the button is pressed I want it to reload the same page, with the same URL, however when I... -
Ray at #2
Re: Submit Button is now an Image
I think this is what you mean.
<FORM action=page.asp method=post>
<Input id=text1 name=text1>
<Input id=submit1 type=IMAGE scr="image.gif" name=submit1>
</Form>
Ray at work
"Jack" <tardifj@inextenso.qc.ca> wrote in message
news:YAXlb.33187$Ol.669215@read1.cgocable.net...of> Hi,
>
> I have a form with input fields and a submit button as following :(don't
> focus on mistypings if any)
>
> <FORM action=page.asp method=post>
> <Input id=text1 name=text1>
> <Input id=submit1 type=submit value=Submit name=submit1>
> </Form>
>
> I want to change the standard button by an image, but keep the advantage> the POST method to pass the parameters to my next page, that is page.asp
>
> How can I do such a thing?
>
> Thanks,
>
> Jack
>
>
Ray at Guest
-
Phill. W #3
Re: Submit Button is now an Image
"Jack" <tardifj@inextenso.qc.ca> wrote in message
news:YAXlb.33187$Ol.669215@read1.cgocable.net...
.. . .Ray's already given you the important bit, but just something to> <FORM action=page.asp method=post>
> <Input id=text1 name=text1>
> <Input id=submit1 type=submit value=Submit name=submit1>
> </Form>
>
> I want to change the standard button by an image, but keep the
> advantage of the POST method to pass the parameters to my next
> page, that is page.asp
watch out for ... you won't be able to use
Request.Form( "Submit1" )
in /processing/ your request any more. Being an image, HTTP won't
send you the value of the button any more, but the X and Y
coordinates where the user clicked on the image, as in
Request.Form( "Submit1.X" )
Request.Form( "Submit1.Y" )
HTH,
Phill W.
Phill. W Guest



Reply With Quote

