thunderain
Programmer
This should have a simple solution. My form submit button works fine if I use type="submit", it sends the value of "View" just fine.
<input type="submit" name="btnView" value="View">
However I need to use and image. When I use the line below, it does not send the value of "View".
<input type="image" src="c:\inetpub\ name="btnView" value="View">
I also tried this line, which also does not return the value of "View"
<button type="submit" name="btnView" value="View"><img src="c:\inetpub\
Can anyone tell me how to send the value with an image button instead of a submit button.
Thank you
Thunderain
<input type="submit" name="btnView" value="View">
However I need to use and image. When I use the line below, it does not send the value of "View".
<input type="image" src="c:\inetpub\ name="btnView" value="View">
I also tried this line, which also does not return the value of "View"
<button type="submit" name="btnView" value="View"><img src="c:\inetpub\
Can anyone tell me how to send the value with an image button instead of a submit button.
Thank you
Thunderain