ASP.NET 中每次都会触发哪个事件

发布于 2024-11-06 03:06:15 字数 78 浏览 0 评论 0原文

我知道 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 技术交流群。

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

发布评论

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

评论(2

折戟 2024-11-13 03:06:15

Global.asax 中,Application_BeginRequest 事件每次发出页面请求时都会触发。

In Global.asax event Application_BeginRequest fire every time when a page request made.

就像说晚安 2024-11-13 03:06:15

我认为您正在寻找的是 Application_BeginRequest 事件:

收到应用程序请求时触发。这是为请求触发的第一个事件,该请求通常是用户输入的页面请求 (URL)。

想了解更多活动信息,请查看这篇文章
使用 ASP.NET Global.asax 文件

I think what you are looking for is the Application_BeginRequest event:

Fired when an application request is received. It's the first event fired for a request, which is often a page request (URL) that a user enters.

For more event information, have a look on this article
Working with the ASP.NET Global.asax file

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