页面生命周期中会话状态、应用程序状态在哪里?

发布于 2024-10-14 17:49:28 字数 29 浏览 2 评论 0原文

页面生命周期中会话状态、应用程序状态在哪里?

where is session state, application state in page life cycle?

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

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

发布评论

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

评论(2

如果没结果 2024-10-21 17:49:28

会话和应用程序状态独立于页面生命周期,并且可以在页面生命周期的任何时间点进行访问。

存储在会话/应用程序状态中的对象或变量将在回发期间持久保存。服务器。。一旦它们到达那里,它们就会在客户端会话期间(在 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.

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