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)
}
}