PDA

View Full Version : get URL string from previous page


pooter8d
07-12-2007, 06:05 AM
I know that in javascript there is no way to access the url from the history, but is it possible using java or jsp?

ess
07-12-2007, 11:14 AM
Here is how

<%
String referer = request.getHeader("referer");
%>

cheers,
Ess