我的母版页中有一个自定义用户控件,它将站点范围的 JavaScript 库加载到母版页的头部
像这样:
<html>
<head>
<CustomControl:MyScriptControl id="scripts" runat="server" />
</head>
<body>
<asp:ContententPlaceHolder id="pageContent" runat="server" />
</body>
</html>
我想让使用 MasterPage 的页面本质上调用用户控件MyScriptControl的方法
public partial class ChildPage: System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//// Invoke Method of MasterPage's UserControl: MyScriptControl
}
}
这可能吗 ?还是有更好的方法来做到这一点?