Answers for "jsp redirect to another url"

1

redirect in jsp

response.sendRedirect("your_link.jsp")
Posted by: Guest on June-11-2021
0

jsp redirect to another url

<%
    String redirectURL = "http://whatever.com/myJSPFile.jsp";
    response.sendRedirect(redirectURL);
%>
Posted by: Guest on August-27-2021

Code answers related to "jsp redirect to another url"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language