Adding Referer URL in jsp - JSP/Java Views : 981
Tagged in : JSP-Java
1 0
Send mail
If you want to add Referer URL while using java URL class. Just add the simple line with your code


URL url = new URL("http://100pulse.com");
URLConnection connection = url.openConnection();
connection.setRequestProperty("Referer", "http://zxc9.com");
By Vinoth, On - 2009-11-13



    Login to add Comments .