A
Atif Jalal
I have a usercontrol which I add to the page the aspx page at runtime.
This control is dynamically created multiple times in the page and
added to a placeholder. This user control also has some events which I
would like to bubble it to the page on which the control is added.
So how do i initiale the event in InitializeComponent of the aspx page
containg the user control?
e.g BubbleControl.BubbleClick += new
EventHandler(WebForm1_BubbleClick);
This control is dynamically created multiple times in the page and
added to a placeholder. This user control also has some events which I
would like to bubble it to the page on which the control is added.
So how do i initiale the event in InitializeComponent of the aspx page
containg the user control?
e.g BubbleControl.BubbleClick += new
EventHandler(WebForm1_BubbleClick);