Google News
logo
Java Servlets - Interview Questions
What is the use of the Send Redirect () method?
Send Redirect () method which works at the client side is used to redirect the response to another resource like Servlet, JSP, HTML.
 
Syntax : void send Redirect(URL);
 
Example : response.sendredirect(“http://www.google.com”);
Advertisement