I’m using the ASP.Net Membership system but I’m having an issue with the LastActivityDate for the users in the database. For some users, their last activity date is in the future… Definitely not supposed to happen. Any thoughts?
I’m using the ASP.Net Membership system but I’m having an issue with the LastActivityDate
Share
Looking at the source code for the Sql Membership Provider, it uses UTC time:
I would check the time difference between
DateTime.UtcNowand your local time and see if that explains it.