How can I track all internet requests?

Is it possible to track all requested URLs using the .NET Framework classes?

+7
c #
source share
4 answers

You can create an HttpModule. It will intercept ALL requests, and you could monitor there.

Here you have an example on how to implement the HttpModule

More on this at this msnd article.

Another option is to use global.asax. Write down what you need at Application_BeginRequest

+4
source share

You can use FiddlerCore to integrate the capabilities of Fiddler into your application.

+3
source share

Use Fiddler , for example.

+1
source share

You can check the IIS logs of your web server. See the following link to determine where they are: http://portal.smartertools.com/KB/a154/where-are-my-iis-log-files-stored.aspx

+1
source share

All Articles