Carlos wrote:
>
> can any body say me how can i in a JSP page detect which is the referer
> page? from which page comes the visit?
> thanks
> Carlos
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]
you can try this
<%
String referer=request.getHeader("referer");
session.setAttribute("referer",referer);
%>
it works fine to me
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]