Asp.Net 会员系统 未来的最后活动日期
我正在使用 ASP.Net 会员系统,但我遇到了数据库中用户的 LastActivityDate 问题。对于某些用户来说,他们的最后一次活动日期是在未来......绝对不应该发生。有什么想法吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 Sql Membership Provider 的源代码,它使用 UTC 时间:
我会检查
DateTime.UtcNow
和您本地时间之间的时差,看看是否可以解释这一点。Looking at the source code for the Sql Membership Provider, it uses UTC time:
I would check the time difference between
DateTime.UtcNow
and your local time and see if that explains it.检查服务器的日期/时间?
Check the date/time of the server?
也许与时区/夏令时相关的问题?您的用户未来有多少? :)
Maybe Timezone/DST-related problem? How much in the future your users seem to be? :)