UrlReferrer issue

  • Thread starter Thread starter Yoyo
  • Start date Start date
Y

Yoyo

Hi all!

I am developing an intranet app and have a problem with the
Request.UrlReferrer object.

I use it to keep a "linkstack" of all pages visited on the app to let the
user surf thru pages (the IE toolbar is not visible).

I tested it ok on intranet and internet with win2k clients. The problem
which happens with XP clients is that SOMETIMES the
Request.UrlReferrer.AbsoluteUri is nothing, leaving the site clueless on
what to put on the linkstack... Is this a bug, or sometimes UrlReferrer CAN
be nothing (when?). Is there any other way i can track referrer (ie
previous) page visited?

Thanx to anyone will answer

Bye

Yoyo
 
Thanx to both for answering,

I solved my problem using

ServerVariables("SCRIPT_NAME") for the page and
ServerVariables("QUERY_STRING") for the parameters sent.

Bye

Yoyo
 
Back
Top