Event handlers are registered by using delegates in C#. The Page.Load event
handler is specified by the following line:
this.Load += new System.EventHandler(this.Page_Load);
A complete treatise on event handlers and delegates is more than would be
practical to address here so I'd suggest you google on C# Events and
Delegates. You'll find several good articles to introduce you to the topic.
HTH
DalePres
MCAD, MCDBA, MCSE
[quoted text, click to view] "david" <anonymous@discussions.microsoft.com> wrote in message
news:0b8301c50f23$708d0810$a401280a@phx.gbl...
> Hi,
> Can someone tell me what the C# equivalent is for:
>
> Private Sub Page_Load(ByVal sender As Object, ByVal e As
> System.EventArgs) Handles Me.Load
> ..more code..
> End Sub
>
> The part I am not sure is "Handles Me.Load"
> Thanks.
>