I have a class that implements IHTTPModule which handles the event PreRequestHandlerExecute. In the method of that event i want to get the url of the page that executed the call.
So for instance if i have a SignOn.aspx page, which then redirects to an Index.aspx page, in my method i want to be able to get the SignOn.aspx url.
If you are doing a redirect, you should find the page where the request came from in the
This property gives the information from the Referer http header.