e.g.
protected void Page_Load(object sender, EventArgs e)
You have 2 partial classes and with Page_Load you're actually subscribing to an event thrown in the same class. The event handler modifier can be changed to public/private and will still handle the event as expected.
Thx in advance
Go to the complete details ...