0

just a very simple question. I want to monitor user activity in my web app.Is that any way to trace what user has been click in certain webpage?For example user click button1 in default1.aspx . A log file will be create and log that user has been create button1 in default.aspx

Is it possible to make it?

user998405
  • 1,329
  • 5
  • 41
  • 84

2 Answers2

1

Try this library (JAVASCRIPT CLICK TRACKING LIBRARY By Erik Vold ) and also read this blog for more information

robasta
  • 4,621
  • 5
  • 35
  • 53
0

You could create a simple web service and post data about how the user interacts with your application by making ajax calls to the web service.

jQuery would help you "listen" to all buttons on your page and make ajax calls.

nunespascal
  • 17,584
  • 2
  • 43
  • 46