Hi,

I'm trying to find the referring URL.

For example:

If you came from www.someplace.com,
I could load a specific page for the user.

I've tried using
Code:
request.ServerVariables("HTTP_REFERER")
but it's not working. It's showing up as blank.

I've also tried appending ?from=CompanyWebsite
and using request.querystring to load the page that way
and I cannot get it to work.

I'm using a webclass to do this. I'm putting my code
in the Private Sub WebClass_Start() event.

Are there other ways of finding the referring URL besides
the two methods I tried?

Thank you in advance!