什么设置 Page.User.Identity.Name

发布于 2024-07-18 00:16:36 字数 306 浏览 4 评论 0原文

我跟踪当前登录的用户 ID,并将我的网站的行为基于此值。 我的代码使用以下语句设置登录的用户 ID:

FormsAuthentication.SetAuthCookie(UserID.ToString(), true);

随后,我从 Page.User.Identity.Name 读取此值。

这在我的桌面上运行良好,但在我的服务器上,我将其设置为 8,然后返回 20。我试图找出什么可以将 Page.User.Identity.Name 设置为一个值以及何时发生这种情况。

谢谢...

I keep track of the current logged in userID and base the behavior of my site on this value. My code sets the logged in user ID with this statement:

FormsAuthentication.SetAuthCookie(UserID.ToString(), true);

Subsequently, I read this value from Page.User.Identity.Name.

This works fine on my desktop, but on my server, I set it to 8 and it comes back 20. I am trying to figure out what can set Page.User.Identity.Name to a value and when this happens.

Thanks...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

染墨丶若流云 2024-07-25 00:16:36

FormsAuthenticationModule 处理 Application_OnAuthenticate 并将 HttpContext.User 分配给一个主要对象,该对象又由 Page.User.Identity.Name 使用

服务器和桌面不存在时差问题吗?

FormsAuthenticationModule handles Application_OnAuthenticate and assigns the HttpContext.User to a prinicipal object which is in turn used by Page.User.Identity.Name.

Isn't there a time difference issue on the server and your desktop?

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