Which event called first? Master Page Page_Load or Content Page Page_Load

前端 未结 3 382
野性不改
野性不改 2020-12-04 17:51

I have a Master page and a webpage that uses the Master page.

In both I have a Page_Load event handler.

In which order are the Page_Load

3条回答
  •  执笔经年
    2020-12-04 18:33

    Master pages run Page_Load() from the deepest level of nesting outwards. So your nested webpage will first run the page_load event.

提交回复
热议问题