servlet > RequestDispatcher.forward
(blah.jsp)
form1.action= "../servlet/my.blahServlet?
>>
(blahServlet)
RequestDispatcher rd = getServletContext().getRequestDispatcher (/jsp/blah.jsp");
rd.forward(request, response);
>>
(blah.jsp)
problem? no css style, no image, if recall servlet it shows servlet path error (404)
My question is in what situation that the jsp's css,image and action path
will be incorrect. thanks.

