custom user logging tracking

  • Thread starter Thread starter ramA
  • Start date Start date
R

ramA

I would like to log specific web user requests and other
specific actions to a file in XML format to analyze site
usage and track users.I would appreciate it if anyone can
suggest or point me to any resource on how to do this,
especially keeping in mind the issue of mutiple users
simultaneously writing to the same log file.

Thanks in advance.
 
You can always put code in the global.asax file to track things that are
trackable. For example.

Sub Application_EndRequest(Sender As Object, E As EventArgs)
code to write something to a log file using Request
properties
End Sub
 
Back
Top