What calls Page_Load and how does it do it?
ASP.NET has a feature called “AutoEventWireup” – this feature allows you to create methods that have the EventHandler signature with names like Page_Load and the runtime will wire up the event from the parent page to the method in your class. Basically the runtime does this on your behalf: this.Load += this.Page_Load; Now it is … Read more