I am writing an ASP.NET application that will keep track of bandwidth being used as well as the time taken by every request.
Since my application is going to be hosted on shared servers so that i want to do every thing in ASP.NET itself and not on the IIS level.
Though there are something called performance counter but they tell about the memory issues.
I only want that total bandwidth consumed in specific day. AND Which page take how much time?
Now i am planning to write every request time and bandidth consumed for every request in Sql Server Database. Am i right or will i be encounter some critical issues by dong this?
I have googled it for too long but dont find what to do in my case?
Any help is appreciated
Thank You
EDIT
I want to show the bandwodth details and time taken by the pages to load on the same website itself so that the admin can see what is going on?
- My web application is going to be hosted on the shared server