This documentation is archived and is not being maintained.

WebPartManager::DynamicConnections Property

Gets the collection of all dynamic connections that currently exist on a Web page.

Namespace:  System.Web.UI.WebControls.WebParts
Assembly:  System.Web (in System.Web.dll)

protected public:
property WebPartConnectionCollection^ DynamicConnections {
	WebPartConnectionCollection^ get ();
}

Property Value

Type: System.Web.UI.WebControls.WebParts::WebPartConnectionCollection
A WebPartConnectionCollection that contains references to all dynamic connections on a page.

Dynamic connections are connections that are created programmatically, as opposed to statically. Static connections are created by declaring them in the markup of a Web Forms page. Dynamic connections are formed either programmatically, or by a user creating a connection using the connection user interface (UI).

The DynamicConnections collection, though it is read-only and you cannot change its contents, does provide programmatic access to each dynamic connection object.

NoteNote

To perform common operations such as connecting or disconnecting WebPart controls, developers should use the public methods on the WebPartManager class, such as DisconnectWebParts and ConnectWebParts, rather than trying to directly modify connection objects in the DynamicConnections collection.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: