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