gpt4 book ai didi

c# - 在页面生命周期的什么时候我们可以分配母版​​页?

转载 作者:太空狗 更新时间:2023-10-30 00:19:52 25 4
gpt4 key购买 nike

我知道 ViewState 在 LoadViewSate 方法中的 InitComplete 和 Preload 事件之间可用。同样,我想知道我们可以在哪个页面生命周期事件中为特定页面分配母版页?

最佳答案

Because the master page and content page are merged during the initialization stage of page processing, a master page must be assigned before then. Typically, you assign a master page dynamically during the PreInit stage

Page PreInit 事件上

void Page_PreInit(Object sender, EventArgs e)
{
this.MasterPageFile = "~/MyMaster.master";
}

阅读Working with ASP.NET Master Pages Programmatically

关于c# - 在页面生命周期的什么时候我们可以分配母版​​页?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16017485/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com