Form with image as button
Why is my form:
Code:
<form name="helpupd" method="post" action="admin.asp?tblname=tblNewBooks&page=1">
not working when I use an image submit button?:
Code:
<input type="submit" name="updhelp" src="images/sq_less.gif">
The form works perfectly when I use a regular submit button instead:
Code:
<input type="submit" name="updhelp">
Here's the whole form (the version with an image that's not working):
Code:
<form name="helpupd" method="post" action="admin.asp?tblname=tblNewBooks&page=1">
<input type="hidden" name="dishelp" value="0">
<input type="submit" name="updhelp" src="images/sq_less.gif">
</form>
Thanks guys.