Hi, I have a form that will collect user input and send the request to a servlet for processing. This is done using a post method.
HTML Code:
<form id="aForm" name="aForm" action="http://localhost/Food/processData" method="post">
<!--
html control, e.g: textbox here
-->
<tr>
<td><input type="submit" name="submitButton" value="Submit Request"></td>
</tr>
</form>
My question is, is there a way that we could abort the request after a long period of waiting?
I cant do anything on the servlet as it is not under my control.
Thanks and looking forward for any reply.