Oct 4, 2005 #1 Hondy Technical User Mar 3, 2003 864 GB Hi Anyone know how to change the standard button on an ASP form page? e.g. The code I have is below, how would I use a graphic? <td> <div align="center"> <input type="submit" value="Log In" name="submit"> </div> </td> Thanks
Hi Anyone know how to change the standard button on an ASP form page? e.g. The code I have is below, how would I use a graphic? <td> <div align="center"> <input type="submit" value="Log In" name="submit"> </div> </td> Thanks
Oct 4, 2005 1 #2 feherke Programmer Aug 5, 2002 9,540 RO Hi Maybe this : forms.html said: image Creates a graphical submit button. Click to expand... http://www.w3.org/TR/html4/interact/forms.html#h-17.4.1 Feherke. http://rootshell.be/~feherke/ Upvote 0 Downvote
Hi Maybe this : forms.html said: image Creates a graphical submit button. Click to expand... http://www.w3.org/TR/html4/interact/forms.html#h-17.4.1 Feherke. http://rootshell.be/~feherke/
Oct 4, 2005 1 #3 kim00 Programmer Jun 21, 2002 92 US This works for me: <input type="image" name="Submit" src="/images/buttons/nameofbutton.gif" border=0> Upvote 0 Downvote
This works for me: <input type="image" name="Submit" src="/images/buttons/nameofbutton.gif" border=0>