Reputation: 1255
I have a nested master page that has its own master page. The parent master page has a property defined in its code behind.
Public ReadOnly Property SelectedPage() As String
Get
Return _selectedPage
End Get
End Property
How can I reference the parent master page's property from within either the child master page's code behind Page_Load or aspx template page?
Upvotes: 6
Views: 4269
Reputation: 1339
Here is how I use
MasterPage tmp = this.Master;
while (tmp.Master != null)
{
tmp = tmp.Master;
}
Upvotes: 0
Reputation: 9011
VB.Net:
DirectCast(Master, MyMastPageType).SelectedPage
C#:
((MyMastPageType)Master).SelectedPage
http://msdn.microsoft.com/en-us/library/system.web.ui.masterpage.master.aspx
Upvotes: 6
Reputation: 21938
protected void Page_Load(object sender, EventArgs e) { MyDemoMaster m = Master as MyDemoMaster; m.MyProperty = "My button text"; }
See:
Upvotes: 1