| I think you can do a trick to produce the same result. I am not sure if the "overriding the events" itself is possible.
However what I imaging is possible is to leave your controls in the Master Page unwired. In the content page's Page_Init method, reference the control in your master page and wire its event. For example:
protected void Page_Init(object sender, EventArgs e)
{
( ( LinkButton )Master.FindControl( "MyLinkBtn" ) ).Click += new EventHandler( this.MyLinkBtn_Click);
}
Hope this helps. |