ASP.NET 页面生命周期:方法与事件
有人可以向我解释一下 ASP.NET 页面生命周期中方法和事件之间的区别吗?
Can someone please explain to me the difference between methods and events in the ASP.NET page life cycle?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当页面运行时,会执行一系列方法。这些方法依次引发事件,用户可以处理这些事件来执行各种任务,例如初始化控件、填充控件属性、执行控件行为代码等。
这是来自 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:
For more information about the ASP.NET Page Lifecycle, see the full overview on MSDN:
http://msdn.microsoft.com/en-us/library/ms178472.aspx