I have a homepage on my website and I have control over the homepage. I want to handle the master page control event on the content page.
How can i do this??
even i used a property like this for a drop down control
public DropDownList propertymastercontrol
{
get
{
return cmbVendor;
}
}
and set the homepage link on a content page like this ...
<%@ MasterType VirtualPath ="~/MasterPage.master" %>
still after having failed to get any page_load event.
protected void Page_Load(object sender, EventArgs e)
{
Master.
}
what could be the problem ..?
source
share