ASP.NET 页面生命周期:方法与事件

发布于 2024-12-08 00:03:20 字数 45 浏览 1 评论 0原文

有人可以向我解释一下 ASP.NET 页面生命周期中方法和事件之间的区别吗?

Can someone please explain to me the difference between methods and events in the ASP.NET page life cycle?

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

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

发布评论

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

评论(1

咆哮 2024-12-15 00:03:20

当页面运行时,会执行一系列方法。这些方法依次引发事件,用户可以处理这些事件来执行各种任务,例如初始化控件、填充控件属性、执行控件行为代码等。

这是来自 MSDN 的优秀流程图,它显示了执行的不同方法,以及从这些方法引发的事件:

在此处输入图像描述

有关 ASP.NET 页面生命周期的更多信息,请参阅完整的MSDN 概述:
http://msdn.microsoft.com/en-us/library/ms178472。 ASPX

When a page runs a series of methods are executed. These methods in turn raise events that can be handled by the user to perform various tasks like initializing controls, populating control properties, executing control behavioral code, etc.

Here is an excellent flowchart from MSDN that shows the different methods that are executed, and the events that are raised from those methods:

enter image description here

For more information about the ASP.NET Page Lifecycle, see the full overview on MSDN:
http://msdn.microsoft.com/en-us/library/ms178472.aspx

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