The following directive should be added to the content page:
<%@ MasterType VirtualPath="path to master page" %>
Add the public property ih file of the main page:
public DropDownList DropDownList
{
get { return dropDownList; }
}
Add an event handler on the content page:
Master.DropDownList.SelectedIndexChanged += OnSelectedIndexChanged;
Assign Master.DropDownList.SelectedValue to Label.Text in the hanlder event.
source
share