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
Which http method is said to be non-idempotent and idempotent?
What is the dispatcher servlet?
What do you mean by url pattern in servlet?
What are sessions in servlets?
Can you send an authentication error from a servlet?
Once the destroy() method is called by the container, will the servlet be immediately destroyed? What happens to the tasks(threads) that the servlet might be executing at that time?
What is servlet container. how it works?
How can we include static files in the jsp page?
If a servlet is not properly initialized, what exception may be thrown?
What is the process to implement doget and dopost methods?
What is cookie? Why is cookie used?
How we can call a jsp from the servlet?
What is a servlet?
What is servlet? Explain
What is servlet lazy loading?