---
title: "What are those event handlers that can be in the Global.asax file?"  
description: "What are those event handlers that can be in the Global.asax file?"  
author: "Rahul Roi"  
published: 2019-09-09  
updated: 2020-09-19  
canonical: https://www.mindstick.com/interview/33579/what-are-those-event-handlers-that-can-be-in-the-global-asax-file  
category: "asp.net"  
tags: ["c#", "asp.net"]  
reading_time: 1 minute  

---

# What are those event handlers that can be in the Global.asax file?

We are listing some event handlers that are commonly found in the Global.asax file. :-

- Application Events: Application_Start ,
- Application_End,
- Application_AcquireRequestState,
- Application_AuthenticateRequest,
- Application_AuthorizeRequest,
- Application_BeginRequest,
- Application_Disposed,
- Application_EndRequest,
- Application_Error,
- Application_PostRequestHandlerExecute,
- Application_PreRequestHandlerExecute,
- Application_PreSendRequestContent,
- Application_PreSendRequestHeaders,
- Application_ReleaseRequestState,
- Application_ResolveRequestCache,
- Application_UpdateRequestCache

and **The Session Events**: Session_Start, Session_End

## Answers

### Answer by Rahul Roi

We are listing some event handlers that are commonly found in the Global.asax file. :-

- Application Events: Application_Start ,
- Application_End,
- Application_AcquireRequestState,
- Application_AuthenticateRequest,
- Application_AuthorizeRequest,
- Application_BeginRequest,
- Application_Disposed,
- Application_EndRequest,
- Application_Error,
- Application_PostRequestHandlerExecute,
- Application_PreRequestHandlerExecute,
- Application_PreSendRequestContent,
- Application_PreSendRequestHeaders,
- Application_ReleaseRequestState,
- Application_ResolveRequestCache,
- Application_UpdateRequestCache

and **The Session Events**: Session_Start, Session_End


---

Original Source: https://www.mindstick.com/interview/33579/what-are-those-event-handlers-that-can-be-in-the-global-asax-file

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
