Hi,
i have been searching the internet but I cannot find anything clue to this issue.Appreciate if anyone can help me with this.
Currently I have a form in my
JSP. This form when submitted should return back to this JSP again.
I have beans to capture the fields for a particular form
<jsp:useBean id="formHandler" scope="page" class="ed21.nday.bean.CapturingNomParticularsBean">
<jsp:setProperty name="formHandler" property="*"/></jsp:useBean>
However if I submit this form and return back to this JSP, the rest of the contents (outside this form) will be rewritten and will query my database again. How can I just retain the information in the JSP?
I can paste my codes if you do not understand what I say.
Thanks