Posted By:
Anonymous
Posted On:
Wednesday, February 16, 2011 06:12 AM
What do you want to achieve here?
Do you want to forward a request from one jsp to another jsp? if yes, use,
<%
RequestDispatcher view = request.getRequestDispatcher("header.jsp");
view.include(request, response);
%>