Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ModalDialog problem in JSP

Status
Not open for further replies.

saimon65

Technical User
Jan 2, 2002
16
AU
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top