Asp.net 母版页

发布于 2024-10-08 21:37:11 字数 24 浏览 1 评论 0原文

如何绑定已使用新母版页创建的网页?

how to Bind webpages that's already created with a new master page ?

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

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

发布评论

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

评论(2

我乃一代侩神 2024-10-15 21:37:11

AT Page_PreInit 事件可以设置母版页。

例如

protected void Page_PreInit(object sender, EventArgs e)
    {
        this.MasterPageFile = "Master.master";
    }

AT Page_PreInit event you can set master page.

for example

protected void Page_PreInit(object sender, EventArgs e)
    {
        this.MasterPageFile = "Master.master";
    }
凉薄对峙 2024-10-15 21:37:11

您需要按照以下几行更改 .aspx 文件中的标记

1) 删除 html head & body

2) 插入 ASP:CONTENT 标记

3) 在 @PAGE 指令中插入 MasterPageFile 属性

说实话,最简单的方法可能是创建一个新的内容页面,选择母版页,然后将所需的任何标记复制到面板中并复制代码隐藏也结束了。

You will need to change the markup in the .aspx file something along the following lines

1) Remove html head & body

2) Insert ASP:CONTENT tag

3) Insert MasterPageFile attribute in @PAGE directive

To be honest the easiest way might be to just create a new content page, select the masterpage and then copy any markup you need into the panel and copy your codebehind over too.

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