how to change the value of Request.ServerVariables["HTTP_REFERER"] on the ser ver? if not possible i

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

Daniel

how to change the value of Request.ServerVariables["HTTP_REFERER"] on the
ser ver? if not possible is there some way to change it by sending back
javascript to the client and having the client automaticaly do something to
change the value of Request.ServerVariables["HTTP_REFERER"] I would like to
reset the value in Request.ServerVariables["HTTP_REFERER"]
 
This sounds like something that is rather unwise to me, but the method I see
to alter this value would be to set up an HTTPHandler that hijacks this
portion of the header, as this header is constructed above the page level. I
am not sure of the mechanics of replacing a header, as you are replacing
valid information with your own values. Even if your reasoning is valid, the
potential for abuse is a bit scary in this area.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 
Back
Top