I have a page with a search button that when clicked opens a Modal Dialog. I submit a search string from this dialog and when the result is sent back, it opens a new window to display the results. How do I make it to display the results on the same dialog?
I use a JSP page to submit the queries and a Servlet processes and sends back the result. To forward the result, the servlet uses
RequestDispatcher rd = request.getRequestDispatcher ("search_employee.jsp");
rd.forward(request,response);
search_employee.jsp is the page which the modal dialog loads for submitting seacrh string.
I have search through so many websites for a solution but am unable to get one.
Thanks.
I use a JSP page to submit the queries and a Servlet processes and sends back the result. To forward the result, the servlet uses
RequestDispatcher rd = request.getRequestDispatcher ("search_employee.jsp");
rd.forward(request,response);
search_employee.jsp is the page which the modal dialog loads for submitting seacrh string.
I have search through so many websites for a solution but am unable to get one.
Thanks.