从内容页访问母板页
2008-11-29 21:28 LvSir 阅读(325) 评论(1) 编辑 收藏 举报(1)在内容页的Page_LoadComplete事件中,通过Master.FindControl方法获取母板页控件的属性:
代码:
protected void Page_LoadComplete(object sender, EventArgs e)
{
Label2.Text = (Master.FindControl("label1") as Label).Text;
}
label1为母板页的控件ID
(2)
使用MasterType指令获取母板页中控件的引用
代码:
Code
VirtualPath属性用于设定被强类型化的母板页的URL地址
为了实现梦想,无论遇到多么大的困难,都不退缩!