showing results for - "redirect in jsp"
Alessia
18 Feb 2016
1response.sendRedirect("your_link.jsp")
Nico
20 Mar 2017
1<%
2    String redirectURL = "http://whatever.com/myJSPFile.jsp";
3    response.sendRedirect(redirectURL);
4%>