Use an image input type as your submit button. With the following code:
<form method=post action=receiver.asp> <input type=image name=coords width=300 height=100> </form> |
The receiving page can do this:
<% Response.Write("The coordinates were: " & Request.Form("coords.x")) Response.Write(", " & Request.Form("coords.y") & ".") %> |