jsp redirect to another url

Solutions on MaxInterview for jsp redirect to another url by the best coders in the world

showing results for - "jsp redirect to another url"
Anna
18 Aug 2016
1response.sendRedirect("your_link.jsp")
Emilio
30 Jul 2019
1<%
2    String redirectURL = "http://whatever.com/myJSPFile.jsp";
3    response.sendRedirect(redirectURL);
4%>