YvonneTsang
Programmer
I am trying to learn how to use HTTP_REFERER properly. I have a basic test site that is using it with the following code.
<%
ThisURL = Request.ServerVariables( "URL" )
PrevURL = Request.ServerVariables("http_referer"
Response.Write( "This URL = " & ThisURL & "<br>"
Response.Write( "Prev URL = " & PrevURL & "<br>"
%>
The referer is not giving me a value
the results when I go to the page is
This URL = /test.asp
Prev URL =
Can someone help me with this problem?
<%
ThisURL = Request.ServerVariables( "URL" )
PrevURL = Request.ServerVariables("http_referer"
Response.Write( "This URL = " & ThisURL & "<br>"
Response.Write( "Prev URL = " & PrevURL & "<br>"
%>
The referer is not giving me a value
the results when I go to the page is
This URL = /test.asp
Prev URL =
Can someone help me with this problem?