我有一个带有变量的 masterPage。我知道如何将 childPage 上的变量与 masterType 一起使用。但是我搜索如何在用户控件中获取变量(控件在 childPage 上)?
也许 childPage 需要将 masterPage 的“指针”传递给用户控件?
我尝试在我的用户控件上使用 MasterType 但
'Master' is not a member of 'System.Web.UI.UserControl
On designer.vb
Public Shadows ReadOnly Property Master() As MasterTypeName
Get
Return CType(MyBase.Master, MasterTypeName)
End Get
End Property
有没有办法让 userControl 知道 MasterType?