Is there any way to monitor all req开发者_如何学Cuested URLs using the .NET framework classes?
You could create a HttpModule. It will intercept ALL requests and you could do any monitoring there.
Here you have an example about how to implement an HttpModule
More info about this on this msnd article
Another option is to use the global.asax. Log what you need on Application_BeginRequest
You can use FiddlerCore to integrate Fiddler capabilities into your application.
Use Fiddler, for example.
You could 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
精彩评论