Wrox Home  
Search P2P Archive for: Go

  Return to Index  

servlets thread: servlets communication in differnt frame


Message #1 by "Tony Ton" <tonton@c...> on Thu, 27 Sep 2001 13:51:20
Hi.
Help me please with this problem.I have menuServlet in leftFrame and 
contentServlet in rightFrame. I dont't know how to pass request from 
menuServlet contentServlet. I think I have to use 
request.getRequestDispatcher("/contentservlet").forward(request, 
response), but here are two frames...?I want refresh only rightFrame not 
whole page.
Thank for every advice
tony
here is sourcecode:
menuServlet...{
   doGet(...){
    request.setAttribute(BOOKINFO, objBook)     
    out.println("<A HREF=\"contentservlet\" target = \"rightFrame\">Book 
info</A>");
   }
}
contentServlet...{
   doPost(...){
      request.getAttribute(BOOKINFO)
   }
}

  Return to Index