---
title: "What are the events that happen when a client requests an ASP.NET page from IIS server?"  
description: "What are the events that happen when a client requests an ASP.NET page from IIS server?"  
author: "Sumit Kesarwani"  
published: 2014-08-28  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/2084/what-are-the-events-that-happen-when-a-client-requests-an-asp-dot-net-page-from-iis-server  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# What are the events that happen when a client requests an ASP.NET page from IIS server?

The following events happen when a client requests an ASP.NET page from the IIS server:

User requests for an application resource.

The integrated request-processing pipeline receives the first user request.

Response objects are created for each user request.

An object of the HttpApplication class is created and allocated to the Request object.

The HttpApplication class processes the user request.

## Answers

### Answer by Sumit Kesarwani

The following events happen when a client requests an ASP.NET page from the IIS server:

User requests for an application resource.

The integrated request-processing pipeline receives the first user request.

Response objects are created for each user request.

An object of the HttpApplication class is created and allocated to the Request object.

The HttpApplication class processes the user request.


---

Original Source: https://www.mindstick.com/interview/2084/what-are-the-events-that-happen-when-a-client-requests-an-asp-dot-net-page-from-iis-server

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
