|
re: inset
is it possible to add a submit or update button? the servlet programming that i've done i've used a submit button with an action on the form in HTML
<form action="servlets/submit.java">
<!-- your form goes here -->
<input type="submit" value="submit">
</form>
the above code executes the servlet when the submit button is pressed
is that anything close to what you were asking?
|