Hi all,
As far as I know (correct me if I'm wrong) when I use a button with type "submit", after clicking the button the HttpServletRequest becomes populated with the values from the jsp page.
I have a page with several textboxes and a submit button -
<input name="submitBtn" type="submit" value="Execute" onclick="ajaxAnywhere.submitAJAX()">
and after submitting the page none of the populated textboxes and their values exist in the request.
What did I miss?
Thanks!