Difference between Include, Forward and sendRedirect in
Servlet?
Answer Posted / shyam babu
include: will include the output of another resource(jsp,
servlet etc )in our current file. and response is generated
from current file
forward: will forward the current request to the forwarding
page & response is generated from forwarding opage
sendRediect: will redirect to the page specified in the
sendRedirect method but it won't send the
same request to the new page but forward will send the same
request to the new page
Is This Answer Correct ? | 8 Yes | 7 No |
Post New Answer View All Answers
What is servlet instance?
How can we include static files in the jsp page?
Explain Action Servlet?
what is the different between a servlet and a cgi? Why do you go for servlet rather than cgi?
What are the types of protocols supported by httpservlet ?
What are the drawbacks of cgi?
How do I know if java is running on linux?
How can I send user authentication information while making URL Connection?
Is tomcat a servlet container?
What is a web container and what is its responsibility?
What is the use of httpservletresponsewrapper?
How do cookies work in servlets?
What do you mean by cgi and what are its drawbacks?
Explain the concept of ssi ?
What is new in ServletRequest interface ? (Servlet 2.4)