| Author | Topic: <Form> |
---|
| Osvaldo Ramirez | <Form>
on Mon, 23 May 2005 09:44:29 -0600Hello guys
I know the is a stupid question, but I dont know if is posible.
I want include a icon in my <form> inside of the html.
for example
<form >
...
....
<input type=submit value ="my image"> <=== ?
</form>
Best Regards
OSvaldo Ramirez |
| Phil Ide
| Re: <Form>
on Mon, 23 May 2005 16:46:50 +0100Osvaldo,
> I know the is a stupid question, but I dont know if is posible.
No such thing as a stupid question
> I want include a icon in my <form> inside of the html.
>
> for example
>
> <form >
> ...
> ....
> <input type=submit value ="my image"> <=== ?
> </form>
<form action="..." name="MYFORM">
<img src="myimg.png" onClick="document.MYFORM.submit()">
</form>
Regards,
Phil Ide
***************************************
* Xbase++ FAQ, Libraries and Sources: *
* goto: http://www.idep.org.uk/xbase *
***************************************
I bought some powdered water, but I don't know what to add to it. -- Steven
Wright |
| Osvaldo Ramirez | Re: <Form>
on Mon, 23 May 2005 10:44:11 -0600Muchas Gracias Phil Ide
Mis mejores Saludos
Osvaldo Ramirez |
| Osvaldo Ramirez | Re: <Form>
on Mon, 23 May 2005 10:51:10 -0600Hello Phil
I am playing with this but ... isnt work
<FORM ACTION="/cgi-bin/waa1gate.exe" NAME="GENERALES" METHOD=post>
< IMG SRC = "c:\wamp\www-sadcom\comments.gif"
onclick="document.GENERALES.submit()">
<INPUT TYPE=HIDDEN NAME="WAA_PACKAGE" VALUE="SADCOMMONITOREO">
<INPUT TYPE=HIDDEN NAME="WAA_FORM" VALUE="generales">
<INPUT TYPE=HIDDEN NAME="WAA_OPTIONS"
VALUE="RO,CUENTA:CL_ID,NOMBRE:CL_NOMBRE,DIRECCION:CL_DIRECC,TELEFONO1:CL_COTEL1,TELEFONO2:CL_COTEL2,TELEFONO3:CL_COTEL3">
<INPUT TYPE=HIDDEN NAME="WAA_USE" VALUE="cliente.dbf">
</FORM>
Best Regards
Osvaldo Ramirez |
| Osvaldo Ramirez | Re: <Form>
on Mon, 23 May 2005 11:31:44 -0600 |
| Phil Ide
| Re: <Form>
on Tue, 24 May 2005 10:42:55 +0100Osvaldo,
> Hello Phil
>
> I am playing with this but ... isnt work
>
> <FORM ACTION="/cgi-bin/waa1gate.exe" NAME="GENERALES" METHOD=post>
> < IMG SRC = "c:\wamp\www-sadcom\comments.gif"
> onclick="document.GENERALES.submit()">
You have used a local file address instead of a URL for the file path.
Regards,
Phil Ide
***************************************
* Xbase++ FAQ, Libraries and Sources: *
* goto: http://www.idep.org.uk/xbase *
***************************************
If you write the word "monkey" a million times, do you start to think
you're
Shakespeare? -- Steven Wright |