Hi All!
I have the following in an ASP script:
var bounceBackPage = Request.ServerV ariables("HTTP_ REFERER");
Response.Write( "<p>bounceBackP age: " +
bounceBackPage + ". Undefined? " +
(bounceBackPage == "undefined" ) + " </p>");
When I enter the page URL by itself, I expect HTTP_REFERER to be undefined..
but this is the output I get:
bounceBackPage: undefined. Undefined? false
How can it print "undefined" and still return false for bounceBackPage ==
"undefined" ?
Any advice would be most appreciated!
Rob
:)
I have the following in an ASP script:
var bounceBackPage = Request.ServerV ariables("HTTP_ REFERER");
Response.Write( "<p>bounceBackP age: " +
bounceBackPage + ". Undefined? " +
(bounceBackPage == "undefined" ) + " </p>");
When I enter the page URL by itself, I expect HTTP_REFERER to be undefined..
but this is the output I get:
bounceBackPage: undefined. Undefined? false
How can it print "undefined" and still return false for bounceBackPage ==
"undefined" ?
Any advice would be most appreciated!
Rob
:)
Comment