English 中文(简体)
ASP.NET WebForm 的页面生命周期是什么?[关闭]
原标题:
  • 时间:2009-02-27 23:13:37
  •  标签:

我们不允许寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以使其可以用事实和引用回答。

Closed 7 years ago.

我想更深入地了解ASP.NET页面生命周期。我正在构建自定义表单控件,并发现我在这个领域的知识不足。

  • Are there any resources, tutorials, etc. that you ve used to better understand this area?
  • Are there any tools you ve used to improve your knowledge in this area?
  • 最佳回答

    I ve found this chart to be fairly useful. Provides a brief description as to what the piece is doing... John-Sheehan ASP.NET Life Cycle Events

    问题回答

    我在我的图钉板上有这个。当你使用主页面时有帮助。

    1. Content page PreInit event
    2. Master page controls Init event
    3. Content controls Init event
    4. Master page Init event
    5. Content page Init event
    6. Content page Load event
    7. Master page Load event
    8. Master page controls Load event
    9. Content page controls Load event
    10. Content page PreRender event
    11. Master page PreRender event
    12. Master page controls PreRender event
    13. Content page controls PreRender event
    14. Master page controls Unload event
    15. Content page controls Unload event
    16. Master page Unload event
    17. Content page Unload event

    这是“原始的”MSDN概述。相当不错:

    将此翻译为中文:http://msdn.microsoft.com/en-us/library/ms227435.aspx http://msdn.microsoft.com/en-us/library/ms227435.aspx

    说实话,你应该不需要我们的帮助去找这些东西。可以试试谷歌。

    这个图表尤其有助于确定事件的顺序,但不详细说明它们。

    将此翻译为中文:ASP.NET 页面生命周期

    原始链接

    这并不直接回答页面生命周期的问题,但是它涵盖了全局事件生命周期,比如BeginRequest和EndRequest事件。了解它们与页面之间的关系是很有好处的。

    将此翻译为中文:https://web.archive.org/web/1/http://articles.techrepublic%2ecom%2ecom/5100-10878_11-5771721.html https://web.archive.org/web/1/http://articles.techrepublic%2ecom%2ecom/5100-10878_11-5771721.html





    相关问题
    热门标签