I have a master page with one property name event type. Now I want to set this property from a content page and then that property value should be available to another conte
Add a property to the master page:
public string lblBannerText { get { return lblBanner.Text; } set { lblBanner.Text = value; } }
Then, get the master of the page and cast it to the master class type:
((MyMaster)Page.Master).lblBannerText = "banner text";