.net 中的母版页

发布于 2024-10-31 06:55:31 字数 124 浏览 1 评论 0原文

我有两个根母版页 RootMaster1 和 RootMaster2 以及一个子母版页 子母版页如何在 C# 中动态选择其父母版页。

我的所有网站页面都继承自子母版页。主要问题是运行时间选择,

提前致谢

i have two root master pages RootMaster1 and RootMaster2 and one child Master page how can a child master page select his parent master page dynamically in c#.

all my website pages inherits from child master page. the main problem is on run time selection

thanks in advance

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

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

发布评论

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

评论(1

信愁 2024-11-07 06:55:31

要从内容页访问直接母版页中的方法,您需要确保在母版页代码隐藏文件中声明要调用的方法的公共访问权限。完成此操作后,您可以使用清单 1 中的代码从内容页访问母版页中的方法,并将 ClassName 替换为代码隐藏类的名称,并将 MasterMethod() 替换为您的母版页方法的名称。将会访问。

ClassName MasterPage = (ClassName)Page.Master;
MasterPage.MasterMethod();

To access a method in the immediate master page from a content page you need to ensure that in the master page code-behind file you declare public access for the method you want to call. Having done this, you can access a method in a master page from your content page by using the code in Listing 1 and replacing ClassName with the name of your code-behind class, and MasterMethod() with the name of the master page method you will be accessing.

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