gpt4 book ai didi

ASP.NET:Session.SessionID 在请求之间发生变化

转载 作者:行者123 更新时间:2023-12-03 04:27:00 29 4
gpt4 key购买 nike

为什么 ASP.NET 页面中 Session 对象的属性 SessionID 在请求之间会发生变化?

我有一个这样的页面:

...
<div>
SessionID: <%= SessionID %>
</div>
...

每次我按 F5 时,输出都会不断变化,与浏览器无关。

最佳答案

这就是原因

When using cookie-based session state, ASP.NET does not allocate storage for session data until the Session object is used. As a result, a new session ID is generated for each page request until the session object is accessed. If your application requires a static session ID for the entire session, you can either implement the Session_Start method in the application's Global.asax file and store data in the Session object to fix the session ID, or you can use code in another part of your application to explicitly store data in the Session object.

http://msdn.microsoft.com/en-us/library/system.web.sessionstate.httpsessionstate.sessionid.aspx

所以基本上,除非您在后端访问 session 对象,否则每个请求都会生成一个新的 sessionId

编辑

此代码必须添加到文件 Global.asax 中。它向 Session 对象添加一个条目,以便您修复 session 直至其过期。

protected void Session_Start(Object sender, EventArgs e) 
{
Session["init"] = 0;
}

关于ASP.NET:Session.SessionID 在请求之间发生变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2874078/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com