I'd like to use a submit button without any form data, but rather with
my own data. I was thinking something along these lines:
<form action="../servlet/ConfirmRasterServlet" method="post">
<button type="submit" value="Confirm Raster">Confirm Raster</button>
</form>
when the user clicks on "confirm raster", arbitrary data (a hashtable
object from the jsp's request object for example) is sent to the
servlet.
Is this possible?
How do I set the data to be sent?
thanks in advance!