Answer Posted / amit ghosh
its simple... use request diapatcher
RequestDispatcher rd = request.getRequestDispatch("url?
newparam=newvalue");
rd.forward(request, response);
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
What are common tasks performed by Servlet Container?
What is servlet configuration?
What do you mean by default initialization in java servlet?
Define context initialization parameters.
request parameter how to find whether a parameter exists in the request object?
What is a servlet?
Difference between httpservlet and generic servlets?
What are the different ways we can maintain state between requests?
What is httpservlet class?
Can you explain in detail 'javax.servlet' package?
Why session tracking is needed?
How do you get the ip address of the client in servlet?
When servlet object is created?
Should I override the service() method?
What's the use of servletcontext?