0
我有一個帶變量的masterPage。 我知道如何在childPage上使用masterType的變量。 但我搜索如何獲取usercontrol中的變量(該控件在childPage上)?來自usercontrol的master訪問變量
也許childPage需要將masterPage的「指針」傳遞給usercontrol?
我嘗試在我的用戶使用,但的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
有沒有一種方式,是的MasterType由用戶控件知道嗎?
我不記得我最終如何糾正我的問題,但你的權利,使用屬性似乎是正確的方式 – forX