Returns the collection of all controls that are contained in the UpdatePanel control.
Syntax
CSharp
VisualBasic
Protected Overrides NotOverridable Function CreateControlCollection As ControlCollection
ManagedCPlusPlus
JSharp
Return Value
Return Value
A ControlCollection object that consists of all controls that define the content of the UpdatePanel control.
Remarks
The CreateControlCollection() method is used by control developers.
Because this method is protected and sealed, it is visible to classes that inherit from the UpdatePanel class, but it cannot be overridden. This method overrides the base implementation to return a specialized ControlCollection object that throws an InvalidOperationException when the Add(Control), AddAt(Int32, Control), Clear(), Remove(Control), or RemoveAt(Int32) method of the ControlCollection class is invoked. To change the content of the UpdatePanel control, modify the child controls of the ContentTemplateContainer property.
Assembly: System.Web.Extensions (Module: System.Web.Extensions)