Kizspy | Question: 13
(Choose 1 answer)
What is the major difference between <jsp:forward> and response.sendRedirect() in a JSP page?
A. <jsp:forward> forwards to another resource within the server; send Redirect() sends a new request from
the client.
B. <jsp:forward> sends a new request from the client; sendRedirect() forwards to another resource within the
server.
C. Both forward and redirect happen entirely on the client-side.
D. There is no difference in functionality between the two.