What is best practises for communicating events from a usercontrol to parent control/page i want to do something similar to this:
MyPage.aspx:
1) Declare a Public event in the user control
2) Issue a RaiseEvent where appropriate inside the user control
3) In the Init event of the parent page, use AddHandler to assign the control.event to the the handling procedure you want to use
Simple as that!