What is the meaning of the life cycle of a web page?

I am new to C # and ASP.NET. I heard a lot about the life cycle of an application and / or web page. I want to know what that means?

+6
source share
5 answers

The page life cycle is the sequence of events that are raised in an ASP.NET page request.

This is described in detail here .

+4
source

As you noted your question using ASP.NET, here is the required document:

ASP.NET Page Life Cycle Overview

When an ASP.NET page starts up, the page goes through a life cycle (steps) in which it performs a series of processing steps. These include initializing, managing instances, restoring and maintaining state, event handler code, and rendering. This is important for you to understand the life cycle of the page so that you can write code at the appropriate stage in the life cycle for the effect that you intend.

+2
source

The life cycle of a web page is simply a sequence of events that occurs between the request (getting on the page) and the response (returning data to the user).

You can learn more about this here:

+1
source

The life cycle of a web page refers to the process and events that are triggered for the page when it goes from the request to the displayed page.

Here is a link to the review: http://msdn.microsoft.com/en-us/library/ms178472.aspx

0
source

One of the resources I'm still using is the MSDN article (ASP.NET Page Life Cycle Overview) :

When an ASP.NET page starts, the page goes through a life cycle in which it performs a series of processing steps. These include initializing, managing instances, restoring and maintaining state, event handler code, and rendering. This is important for you to understand the life cycle of the page so that you can write code at the appropriate stage in the life cycle for the effect that you intend.

0
source

Source: https://habr.com/ru/post/896253/


All Articles