jsp
what 's meant by this scriptlet? what is the purpose of this and what it's called.
<%
String url = "http://"+request.getServerName()+":"+request.getServerPor t()+request.getContextPath()+ "/jsp/home.jsp";
response.setHeader("Refresh","3; URL="+url);
%>
|