Asp.net 母版页
如何绑定已使用新母版页创建的网页?
how to Bind webpages that's already created with a new master page ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何绑定已使用新母版页创建的网页?
how to Bind webpages that's already created with a new master page ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
AT Page_PreInit 事件可以设置母版页。
例如
AT Page_PreInit event you can set master page.
for example
您需要按照以下几行更改 .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.