Google News
logo
Java Servlets - Interview Questions
How Forward () method is different from Send Redirect () method?
Forward () method :
* It is used to send the exact same request to another resource.
* It works on the server-side within the server.

Send Redirect () method :
* It always sends a new request to the resources as it uses URL.
* It works at the client-side both outside and within the server.
Advertisement