Hi Can you please help in this...
I created one method in master page, I want to use that method in someother page(Child or Content page)
I tried this method but No luck, it's not working...
in MasterPage:
public partial class TestMaster : System.Web.UI.MasterPage
{
public void XXXX()
{
}
}
I'm trying to call this method in child page like
TestMaster MyMasterPage = (TestMaster )this.Master;
MyMasterPage. (here not able to get that masterpage method here)