Events and Delegates with ASP.NET master pages - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T12:31:16Zhttp://stackoverflow.com/feeds/question/204906http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/204906/events-and-delegates-with-asp-net-master-pages1Events and Delegates with ASP.NET master pagesRob Bell2008-10-15T14:22:42Z2008-10-15T14:39:48Z
<p>How do you catch a custom event raised by a master page?</p>
<p>On my master page I have a custom event and delegate:</p>
<pre><code>public event SignOutHandler SignOut;
public delegate void SignOutHandler();
</code></pre>
<p>This is raised when a link button on the master page is clicked.</p>
<pre><code>if (SignOut != null)
{
SignOut();
}
</code></pre>
<p>In a user control on the page I'd like to subscribe to that event, but I don't know how I'm supposed to access it. Normally I'd do something like:</p>
<pre><code>MyInstantiatedMasterPage.SignOut += new MyMasterPage.SignOutHandler(MyEvent);
</code></pre>
<p>but dealing with a master page means that this isn't possible.</p>
http://stackoverflow.com/questions/204906/events-and-delegates-with-asp-net-master-pages/204969#2049692Answer by DannySmurf for Events and Delegates with ASP.NET master pagesDannySmurf2008-10-15T14:39:48Z2008-10-15T14:39:48Z<p>It's instantiated as a global object, which is what you'll need to use:</p>
<pre><code>((MyMasterPage)Master).SignOut += new MyMasterPage.SignOutHandler(MyEvent);
</code></pre>