November 30th, 2009
5:45 pm
Posted under JSP
Permalink
Tags JSP, Servlet
Useful post gives the code for this here. The code extract is as follows :-
String nextJSP = "/searchResults.jsp"; RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(nextJSP); dispatcher.forward(request,response);
Leave a Reply
You must be logged in to post a comment.