What is the JSP equivalent to header("Location: login.php"); in PHP? I want to open a new page in the same window.
Created Jul 31, 2006
Byron Tymvios
In JSP you would use response.sendRedirect("your/URL/here"); to redirect the client's browser to a different location.