Guys how to access content page's method from master page in ASP.NET C#?
The code in content page (usageDuration.aspx.cs
):
public void renderChart()
{
// xxxxx
}
Guys how to access content page's method from master page in ASP.NET C#?
The code in content page (usageDuration.aspx.cs
):
public void renderChart()
{
// xxxxx
}
You can do this using delegates, for more information go through the below link
Calling Content Page Method from MasterPage Method
your can find answer.