I\'m dynamically loading user controls adding them to the Controls collection of the web form.
I\'d like to hide user controls if they cause a unhandled exception wh
How about adding a new sub-class of UserControl that error-handles its render and load methods (so that they hide as you wish) and then inheriting from that for your user controls?