java - Automatic redirection to a servlet from a JSP page -
is there way auto redirect servlet jsp page?
i know it's possible jsp this:
<% response.addheader("refresh","4;./nexpage.jsp"); %>
this code redirect nexpage.jsp after 4 seconds.
but want redirect given servlet instead.
can please check this.
<meta http-equiv="refresh" content="5;url=/servleturl">
this redirect given servlet url after 5 seconds. place tag between head tag. think not seo friendly.
Comments
Post a Comment