仅使用一个用户的会话状态

发布于 2024-11-17 04:19:15 字数 167 浏览 1 评论 0原文

我的会话状态中有 bool 变量。当我尝试获取此值时,我会为所有用户获取该值。当我像另一个没有初始化会话状态的用户一样登录时,我得到了相同的值。

     bool aa = (bool)Session["playedSRB"];

我认为这与用户有关。

I have bool variable in my session state. When I try to get this value I get for all users. When I login like another user who doesn`t have initialize Session state, I got same value.

     bool aa = (bool)Session["playedSRB"];

I was thinking this is related to the user.

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

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

发布评论

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

评论(2

清风无影 2024-11-24 04:19:15

我不相信会话状态 cookie 与登录者相关。ASP.NET_SessionId

是会话 cookie。

.ASPXAUTH 是身份验证 cookie(登录)。

I don't believe the session state cookie is associated with who is logged in.

ASP.NET_SessionId is the session cookie.

.ASPXAUTH is the authentication cookie (login).

冬天旳寂寞 2024-11-24 04:19:15

..这可能不是你的问题,但我建议用 true 进行测试 - 将 null 值转换为 bool 会转换为 false。

..It might not be your problem, but I'd suggest testing with true instead - a null value cast to bool converts to false.

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