页面生命周期中会话状态、应用程序状态在哪里?
页面生命周期中会话状态、应用程序状态在哪里?
where is session state, application state in page life cycle?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
页面生命周期中会话状态、应用程序状态在哪里?
where is session state, application state in page life cycle?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
会话和应用程序状态独立于页面生命周期,并且可以在页面生命周期的任何时间点进行访问。
存储在会话/应用程序状态中的对象或变量将在回发期间持久保存。服务器。。一旦它们到达那里,它们就会在客户端会话期间(在 SessionState 的情况下)或应用程序的持续时间内(在 ApplicationState 的情况下)停留在那里。
这可能在准确性方面需要一些自由,但这就是我通常认为该机制工作的方式。
The Session and Application states are independent of the page lifecycle and can be accessed at any point during the page lifecycle.
Objects or variables which you store in session/application state will be persisted across postbacks on the server. Once they are there, they stay there, for the duration of the client session (in the case of SessionState) or for the duration of the application (in the case of ApplicationState).
This probably takes a few liberties in terms of accuracy but this is how I generally think of this mechanism as working.
您读过 ASP.NET 页面生命周期 -
http://msdn.microsoft.com/en-us/library/ms178473.aspx
Did you read ASP.NET Page life cycle -
http://msdn.microsoft.com/en-us/library/ms178473.aspx