当所有用户会话结束时,application_end 会被调用吗?
我有一个 smqll 问题, 当所有用户结束会话时,global.asax 中的 application_end 事件会被调用吗?
过去也许也是这样吗?
i have a smqll question,
will the application_end event in global.asax gets called when all users end there session?
was it like this in the past maybe?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 MSDN IIS 5.0 和 6.0 的 ASP.NET 应用程序生命周期概述主题:< /a>
因此,它与所有用户会话何时关闭无关。当应用程序从内存中卸载时,即由于
web.config
或global.asax
文件更改或 ASP.NET 重新编译,或者,我推测,当从IIS6的网站管理界面将网站设置为停止时。From the MSDN ASP.NET Application Life Cycle Overview for IIS 5.0 and 6.0 Topic:
So it does not relate to when all user sessions have closed. It occurs when the application is unloaded from memory, i.e. as the result of a
web.config
orglobal.asax
file change or ASP.NET recompilation, or, I presume, when the site is set to stopped from the web site management interface of IIS6.