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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top