Jsp redirect

In this section, you will learn how to redirect a page in JSP.

Jsp redirect

Jsp redirect

        

In this section, you will learn how to redirect a page in JSP. You can see in the given example that we have used the method response.sendRedirect() through which the server sends the response to the client browser, from where the next request comes and it displays that url correctly. You can also redirect the jsp page in a jsp.

Here is the code of redirect.jsp

<html>
<%
String redirectURL = "http://www.roseindia.net/";
response.sendRedirect(redirectURL);
%>
</html>

Output will be displayed as:

Download Source Code: