Previous | Home | Next |
JSP response
It is an implicit object of type HttpServletResponse and HttpServletResponse is produce by the web container for each jsp request.
JSP response can be performed to response such as redirect response to another resource and send error etc.
JSP response implicit object where we are redirecting the response to the Google.
Example
index.jsp<form action="welcome.jsp"> <input type="text" name="uname"> <input type="submit" value="go"><br/> </form> <form action="welcome.jsp"> <input type="text" name="uname"> <input type="submit" value="go"><br/> </form>
<% response.sendRedirect("http://www.google.com"); %> <% response.sendRedirect("http://www.google.com"); %>
Output :
Previous | Home | Next |