User1392531445 posted
I have a BaseUsercontrol
say suppose Base User Control has Load and create buttons
Usercontrol1:BaseUsercontrol
{
}
UserControl2:BaseUsercontrol
{
}
On my webpage , I have added this BaseUserControl.
UserControl1 and UserControl2 are loaded dynamically
How to handle the Load_Click and Create_Click of BaseuserControl in respective UserControls. I may also need to be able to use these events in the in the individual user controls as well as web page.
Thanks