how to detect who redirects traffic to a aspx page? is this info passed along in request object or c

  • Thread starter Thread starter Daniel
  • Start date Start date
D

Daniel

how to detect who redirects traffic to a aspx page? is this info passed
along in request object or can sites anonymously redirect traffic to other
sites?
 
Hi,

You can check the UrlReferrer but you CANNOT trust it, it's send by the
client and it can contains anything.


cheers,
 
thanks but are you kidding? as far as i can tell you did not even read the
question. I didnt ask anything abouy the referer. I am asking about the
redirector. referer is when the browser chooses to tell the target of an
href where the href was. I am asking if there is a parameter in http that
the browser can tell if a REDIRECTION occures.
 
Hi,

I did, maybe you did not read the answer well :)

A redirect is just a 405 "page moved" error code ( maybe it's another
number ) that the server send to the client, then the client send another
request with the new url, as I said before there is no way to know it for
sure.

Also, you now are talking about the browser to know, I though that you need
to know this in the server.

If you want to know it the browser , that is a completely different history.


cheers,
 
Back
Top