ASP.NET 中每次都会触发哪个事件
我知道 Global.asax 具有在特定时间触发应用程序的事件。但我需要一个每次应用程序收到请求时都会触发的事件
。
I know that Global.asax
has events which fire for an application at a specific time. But I need an event
which fires every time the application receives a request.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在
Global.asax
中,Application_BeginRequest
事件每次发出页面请求时都会触发。In
Global.asax
eventApplication_BeginRequest
fire every time when a page request made.我认为您正在寻找的是
Application_BeginRequest
事件:想了解更多活动信息,请查看这篇文章
使用 ASP.NET Global.asax 文件
I think what you are looking for is the
Application_BeginRequest
event:For more event information, have a look on this article
Working with the ASP.NET Global.asax file