Download as pdf
Download as pdf
You are on page 1of 2
2115723, 733 PM JSP - Page Redirecting JSP - Page Redirecting In this chapter, we will discuss page redirecting with JSP. Page redirection is generally used when a document moves to a new location and we need to send the client to this new Location. This can be because of load balancing, or for simple randomization. The simplest way of redirecting a request to another page is by using sendRedirect{) method of response object. Following is the signature of this method — public void response. sendRedirect(String location) ‘throws IOException This method sends back the response to the browser along with the status code and new page location. You can also use the setStatus() and the setHeader() methods together to achieve the same redirection example — String site = "http://www.newpage.com" response. setStatus (response. SC_MOVED_TEMPORARILY) ; response. setHeader("Location", site); Example This example shows how a JSP performs page redirection to an another location - <@ page import = “java.io.*,java.util.*" %>
Page Redirection
& // New Location to be redirected hitpshwwcttoriaepoint comispigp_page_ redirect him 12 211573, 793 PM JSP- Page Redrecing String site = new String("http: //www.photofuntoos .com") ; response. setStatus (response. SC_MOVED_TEMPORARILY) ; response. setHeader("Location", site); % Let us now put the above code in PageRedirectjsp and call this JSP using the URL http:/Mocalhost'8080/PageRedirectjsp. This would take you to the given URL http:/Avww.photofuntoos.com. hitpshwwcttoriaepoint comispigp_page_ redirect him 22

You might also like