For a typical user registration and membership system i follow in ASP.NET website i would like to update the last activity date and time. Which of the below methods would be ideal to follow.
1
Whenever a request is made to a method that access the data from the user account table, automagically(O_o) update the last_account_activity date using GETDATE()
2
Call UpdateLastActivity() as a method external after a method is called from the membership system.
info:
In terms of reliability the #2 is ideal because i can't rely in #1 when user actively using data from other tables rather than user account table.
What do you think? U got another way for me to do it?
Specs
.NET Framework 2.0
Asp.net 2.0
Custom Membership Provider Implementation
Sql Server 2005 Database
