Asp.Net 会员系统 未来的最后活动日期

发布于 2024-12-08 12:44:44 字数 104 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

迷爱 2024-12-15 12:44:44

查看 Sql Membership Provider 的源代码,它使用 UTC 时间:

cmd.Parameters.Add(CreateInputParam("@CurrentTimeUtc", SqlDbType.DateTime, DateTime.UtcNow));

我会检查 DateTime.UtcNow 和您本地时间之间的时差,看看是否可以解释这一点。

Looking at the source code for the Sql Membership Provider, it uses UTC time:

cmd.Parameters.Add(CreateInputParam("@CurrentTimeUtc", SqlDbType.DateTime, DateTime.UtcNow));

I would check the time difference between DateTime.UtcNow and your local time and see if that explains it.

权谋诡计 2024-12-15 12:44:44

检查服务器的日期/时间?

Check the date/time of the server?

德意的啸 2024-12-15 12:44:44

也许与时区/夏令时相关的问题?您的用户未来有多少? :)

Maybe Timezone/DST-related problem? How much in the future your users seem to be? :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文