Answer Posted / muralisankar
Using RequestDispatcher as follows,
RequestDispatcher rd =
getServletContext().getRequestDispatcher("test.jsp");
rd.forward(req,res);
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is servlet instance?
What are the uses of servlet
What do you mean by request dispatcher in servlet?
How does Cookies work in Servlets?
List out difference between a JavaBean from a Servlet?
Define context initialization parameters.
How can you use a servlet to generate a plain text instead of html?
Why HttpServlet class is declared abstract?
How to read request headers from servlets?
What do you mean by cgi in servlet?
What are session variable in servlets?
Can we refresh servlet in client and server side automatically?
Differentiate between the web server and application server?
If servlet receives multiple requests, how many objects will it create?
What is the difference between get and post methods?