how to add child control method on master page button click
how to add child control method on master page button click
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Abhishek JainPosted Aug 28, 2013, 9:45 AM
In your Master Page:
public partial class SiteMaster : System.Web.UI.MasterPage
public event EventHandler contentPageMethodEvent;
//In the Event Handler of your Button Add Following:
//if (contentPageMethodEvent != null)
Now on your Child Page do this:
Hope it helps....