|
sorry wrongly i typed.
RequestDispatcher.forward("give page address here"); // to foward app page
correct is
RequestDispatcher dispatcher =
getServletContext().getRequestDispatcher("/web/html/application.html");
dispatcher.forward(request, response);
and it will open in the same window.
sanjeev
|