网页生命周期的含义是什么?
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
页面生命周期是在 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.
当您使用 ASP.NET 标记您的问题时,这里是强制性文档:
ASP.NET页面生命周期概述
As you tagged your question with ASP.NET, here goes the mandatory doc:
ASP.NET Page Life Cycle Overview
网页生命周期只是请求(点击页面)和响应(将数据返回给用户)之间发生的一系列事件。
您可以在此处找到有关此内容的更多信息:
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:
网页生命周期是指页面从请求到呈现页面时触发的过程和事件。
以下是概述的链接:
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
我仍然使用的资源之一是 MSDN 文章(ASP.NET 页面生命周期概述):
One of the resources I still use is the MSDN article (ASP.NET Page Life Cycle Overview):