Let's say I am building a bunch of UserControls in an ASP.Net Web application, and that all those user controls inherit from a custom base class that I have created, which in turn inherits from System.Web.UI.UserControl.
Now let's say that I (via my custom base class) want the contents of each user control to be automatically wrapped in an UpdatePanel control.
How would I do this? I suspect it involves overriding the CreateControlCollection and/or CreateChildControls methods in my custom base class, but I am not sure how.
Any ideas?