从内容访问母版页上的用户控件

时间:2013-04-19 10:53:39

标签: asp.net

我正在尝试从我的内容页面访问存储在母版页上的用户控件。 到目前为止,我已尝试在我的内容页面上使用<%@ MasterType VirtualPath="" TypeName=""%>,但我似乎无法使其正常工作。

母版:

<%@ Register TagPrefix="My" TagName="RightPanel" Src="~/RightPanel.ascx" %>
<My:RightPanel runat="server" ID="RightPanel"/>

内容页面(前端)

<%@ MasterType VirtualPath="~/MasterPage.master" TypeName="RightPanel"%>

但我不能从我的代码隐藏中调用RightPanel。

我错过了什么?

1 个答案:

答案 0 :(得分:0)

您可以使用: Master.FindControl

RightPanel u = Master.FindControl("RightPanel") as RightPanel;