Is there any way to monitor all requested URLs using the .NET framework classes?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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