Reputation: 61725
My page structure is:
MainNew (Master Page)
|
--> Store (Nested Master Page)
|
--> StoreCheckout.aspx (Content Page)
MainNew
has the declaration
public LoggedInUser ThisUser { get; set; }
I can access this property in the Nested Masterpage
as follows:
((MasterPages_MainNew)Master).ThisUser
But I can't seem to work out how to reference ThisUser
from the content page. Can anyone show me the syntax?
Upvotes: 0
Views: 57