HTTPHandler

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to get the contents of a target page in the HTTP handler. If
yes, can somebody tell me the method to call in the handler or point me to
some resource.

Thanks
Vibs
 
Try looking at the Referer Header.

It might or might not be there, but if it is there, it should be correct.

ProcessRequest( HttpContext context )
{
context.Response.Write( context.Request.Headers["Referer"] );
}

HTH

bill
 
Back
Top