仅使用一个用户的会话状态
我的会话状态中有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不相信会话状态 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).
..这可能不是你的问题,但我建议用 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.