I would like to log how many get requests a user performed per day in asp.net mvc (3) after being forms authenticated. I suppose I could implement a ActionFilter or something but then I have to mark each relevant action/controller. Could I somehow intercept this globally? Thanks!
Christian
A global action filter perhaps?
Global.asax.cs
Action Filter:
However, i dare say there could be a tool which tracks this for you at the server level, rather than code level.
Worth a google.