WebPartManager.Controls Property

Definition

Gets the collection of all WebPart, server, or user controls that are contained in WebPartZoneBase zones on a Web page and are managed by the WebPartManager control.

public:
 virtual property System::Web::UI::ControlCollection ^ Controls { System::Web::UI::ControlCollection ^ get(); };
public override System.Web.UI.ControlCollection Controls { get; }
member this.Controls : System.Web.UI.ControlCollection
Public Overrides ReadOnly Property Controls As ControlCollection

Property Value

A ControlCollection that contains all controls managed by the WebPartManager control.

Remarks

The Controls property does not reference the other controls that are referenced by the WebPartManager control, such as the various zone controls, EditorPart or CatalogPart controls, and others.

This property is used by the Web Parts control set, and in most development situations it is not intended to be called from your code. For this reason, although the property is public, it is hidden from IntelliSense. Developers who want to access the collection of WebPart or other server controls managed by the WebPartManager control should use its WebParts property.

Applies to

See also