View Single Post
  #13 (permalink)  
Old 04-09-2008, 09:00 AM
sanjeevtarar's Avatar
sanjeevtarar sanjeevtarar is offline
Senior Member
 
Join Date: Apr 2008
Location: Delhi(India)
Posts: 249
sanjeevtarar is on a distinguished road
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
Reply With Quote