Skip to content

Instantly share code, notes, and snippets.

@Ramasubramanian
Created September 6, 2011 15:29
Show Gist options
  • Save Ramasubramanian/1197860 to your computer and use it in GitHub Desktop.
Save Ramasubramanian/1197860 to your computer and use it in GitHub Desktop.
Frame bust redirect
public void redirect(final HttpServletResponse response) throws IOException{
String url = "http://abcde.com";
String out = "<script type=\"text/javascript\">window.top.location=\"" + url+ "\"</script>";
response.getWriter().print(out);
response.flushBuffer();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment