相信大家都用过asp.net 2.0下的嵌套的masterpage功能,该功能很强大,可以让用户先制作出模版页后,然后很容易地套用到其他页面中去。而且模版页还可以嵌套的,但嵌套后的模版页,我们会发觉有一个问题,那就是当使用嵌套的模版页后,在设计视图状态下,是没办法对其进行可视化操作的,那么如何解决这个问题呢?我找了下老外的blog,找到了老外提供的一个方法,暂且可以绕个弯来解决该问题,下面讲解一下:
我们可以写一个基类,叫basepage.cs,放在app_code目录下,在这个类中,添加一个叫
runtimemasterpagefile的属性,是一个字符串类型,指定在运行期间才用哪一个模版文件,并且重写onpreinit
方法,代码如下:
public class basepage : system.web.ui.page
{
private string runtimemasterpagefile;
public string runtimemasterpagefile
{
get
{
return runtimemasterpagefile;
}
set
{
runtimemasterpagefile = value;
}
}
protected override void onpreinit(eventargs e)
{
if (runtimemasterpagefile != null)
{
this.masterpagefile = runtimemasterpagefile;
}
base.onpreinit(e);
}
}
接着,我们构造一个叫mainmaster.master的模版页,里面随便搞一个header和footer的信息,中间留一个
叫maincontent的contentplaceholder,然后再建一个叫submaster.master的模版页,其中的
masterpagefile=”~/mainmaster.master”,以套用mainmaster模版页,其中放一个一行两列的表格,如下:
<asp:content id=”foo” contentplaceholderid=”maincontent” runat=”server”>
<table>
<tr>
<td width=”300″>
left column in submaster
<br />
<asp:contentplaceholder id=”leftcolumn” runat=”server”>
</asp:contentplaceholder>
</td>
<td>
right column in submaster
<br />
<asp:contentplaceholder id=”rightcolumn” runat=”server”>
</asp:contentplaceholder>
</td>
</tr>
</table>
</asp:content>
最后,在一个aspx页面中,这样指定
<%@ page language=”c#” masterpagefile=”” runtimemasterpagefile=”submaster.master” codefilebaseclass=”basepage” autoeventwireup=”true” codefile=”default.aspx.cs” inherits=”_default” title=”untitled page” %>
可以看到,在这里,我们不设置masyterpage的属性,而是指定了runtimemasterpagefile的属性为
submaster.master,这个是在运行时候才加载的模版,而codefilebaseclass属性指定了我们刚才写
的那个类basepage.cs,这样,我们就可以在这个aspx的设计视图状态下看到拉,可以拖拉设计了。
要注意的是,根据微软的说法,听说要到下一个版本的visual studio,才能完全支持模版嵌套时的完全设计视图
状态的切换哦