What event fires every time in ASP.NET

I know that Global.asax has events that fire for the application at a specific time. But I need an event that fires every time the application receives a request.

+4
source share
2 answers

In Global.asax Application_BeginRequest event fires every time a page request is made.

+8
source

I think you are looking for the Application_BeginRequest event:

Called when an application request is received. This is the first event that fires for a request, which is often a page request (URL) that a user enters.

For more information on events, take a look at this article Working with the ASP.NET Global.asax File

+3
source

All Articles