网页生命周期的含义是什么?

发布于 2024-12-02 05:04:43 字数 63 浏览 0 评论 0原文

我是 C# 和 ASP.NET 新手。我听说过很多有关应用程序和/或网页生命周期的内容。 我想知道这是什么意思?

I'm new to C# and ASP.NET. I hear a lot about application and/or web page life-cycle.
I want to know what's the meaning of this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

鹿童谣 2024-12-09 05:04:43

页面生命周期是在 ASP.NET 页面请求中调用的事件序列。

此处对此进行了详细记录。

The page lifecycle is the sequence of events that are invoked in an ASP.NET Page Request.

This is documented in great detail here.

久随 2024-12-09 05:04:43

当您使用 ASP.NET 标记您的问题时,这里是强制性文档:

ASP.NET页面生命周期概述

当 ASP.NET 页面运行时,该页面会经历一个生命周期(阶段),其中
它执行一系列处理步骤。这些包括
初始化、实例化控件、恢复和维护
状态、运行事件处理程序代码和渲染。这对于
您了解页面生命周期,以便可以在以下位置编写代码
达到您想要的效果的适当生命周期阶段。

As you tagged your question with ASP.NET, here goes the mandatory doc:

ASP.NET Page Life Cycle Overview

When an ASP.NET page runs, the page goes through a life cycle (stages) in which
it performs a series of processing steps. These include
initialization, instantiating controls, restoring and maintaining
state, running event handler code, and rendering. It is important for
you to understand the page life cycle so that you can write code at
the appropriate life-cycle stage for the effect you intend.

帥小哥 2024-12-09 05:04:43

网页生命周期只是请求(点击页面)和响应(将数据返回给用户)之间发生的一系列事件

您可以在此处找到有关此内容的更多信息:

Web Page lifecycle is simply a sequence of events that happen between the request (hitting the page) and response (returning data to user).

You can find more info about that here:

星星的軌跡 2024-12-09 05:04:43

网页生命周期是指页面从请求到呈现页面时触发的过程和事件。

以下是概述的链接:
http://msdn.microsoft.com/en-us/library/ms178472.aspx

The web page life-cycle refers to the process and events that get fired for a page when it goes from a request to a rendered page.

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

如日中天 2024-12-09 05:04:43

我仍然使用的资源之一是 MSDN 文章(ASP.NET 页面生命周期概述)

当 ASP.NET 页面运行时,该页面会经历一个生命周期,其中
它执行一系列处理步骤。这些包括
初始化、实例化控件、恢复和维护
状态、运行事件处理程序代码和渲染。这对于
您了解页面生命周期,以便可以在以下位置编写代码
达到您想要的效果的适当生命周期阶段。

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

When an ASP.NET page runs, the page goes through a life cycle in which
it performs a series of processing steps. These include
initialization, instantiating controls, restoring and maintaining
state, running event handler code, and rendering. It is important for
you to understand the page life cycle so that you can write code at
the appropriate life-cycle stage for the effect you intend.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文