Here you will see how an ASP.NET page renders after requesting it.

What is ASP.NET?

ASP.NET is a Microsoft technology that provides us a platform where we can create and build web applications. ASP.NET uses server side control and render as html. Using ASP.NET, we can create wide range of big enterprise web application. When we request for an ASP.NET page through browser, then it goes through different stages and this is called ASP.NET page life cycle.

Page Life Cycle

ASP.NET page life cycle describes us how an ASP.NET page renders page control, how it renders in the browser, which type of events fire during the processing of the page.

When you make a request for a page, it loads into the server memory and processes it and sends the result to the browser which render as html on the browser. During from page request to page render, different method and events are fired according to the application.

Stages of Page Life Cycle

  1. Page Initialization
  2. Page Load
  3. Page Render
  4. Page Unload

In this stage the following events are fired.

events

See the following Microsoft image, which shows you how an ASP.NET page render and which events fired in process of page life cycle.

page render

Thanks for reading this article. Hope this will help you.