Tagged Questions
4
votes
1answer
91 views
How often is a UserControl handle recreated?
I looked up the UserControl.Load event for winforms (found here) on msdn and saw this caution message:
The Load event occurs when the handle for the UserControl is created.
In some ...
4
votes
3answers
2k views
How do I cancel event bubbling in ASP.net?
Is it possible to stop an ItemCommand or control event from bubbling up the control hierarchy? I have a control that contains child user controls that may or may not already have code that handles ...
1
vote
3answers
157 views
Why don't events of dynamically added user control fire on postback?
There are plenty of similar questions on SO (1, 2, 3, 4 etc) and on the web (1, 2 etc) but none of the corresponding answers clarifies my situation.
I have a simple custom user control consisting of ...