What is the use of RequestDispatcher in servlet?
Answer Posted / pramod p deore
RequestDispatcher is used to transfer the control to other
JSP or servlet.
RequestDispatcher rd= request.getRequestDispatcher
("result.jsp);
rd.forward (request, response);
| Is This Answer Correct ? | 9 Yes | 6 No |
Post New Answer View All Answers
What are all the advantages of servlet over cgi?
Why do we have servlet listeners?
How do you invoke a servelt?
What is servlet container. how it works?
How can we include static files in the jsp page?
What is servlet api used for conneting database?
What is the difference between servlet and filter?
Why session tracking is needed?
When should you prefer to use doget() over dopost()?
What are the common methods that are included in the http servlet class?
Explain url encoding?
What are session variable in servlets?
How we can get ip address of client in servlet?
What is the difference between Servlets and Applets?
What's the difference between servlets and applets?