主页参考 [英] master page refrence

查看:85
本文介绍了主页参考的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请有人告诉我,我可以使用visual studio 2010中的母版页将两个或更多母版页面引用到网页表格吗?

很快回复我...

Please anybody tell me can I give refrence of two or more master pages to a web form using master page in visual studio 2010??
Reply me soon...

推荐答案

正如其他人所说,一个页面不能有2个母版页,母版页也不能从其他母版页继承。
As the others said, you can't have 2 master pages for one page, nor can a master page inherit from another master page.


尝试使用pre_int页面事件来执行此功能。



Try to use pre_int page event for doing this functionality.

protected void Page_PreInit(object sender, EventArgs e) 
{ 
 if ('Your Condition' == null) 
    this.Page.MasterPageFile = "~/Master1.master";
 else
    this.Page.MasterPageFile = "~/Master2.master";
}


这篇关于主页参考的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆