WebPartManager.OnConnectionsActivating(EventArgs) Method

Definition

Raises the ConnectionsActivating event to indicate that a page and its controls have loaded, and the process of activating connections can begin.

C#
protected virtual void OnConnectionsActivating(EventArgs e);

Parameters

e
EventArgs

An EventArgs that contains the event data.

Remarks

The OnConnectionsActivating method raises the ConnectionsActivating event, which provides developers with a mechanism for programmatically customizing the process of activating connections.

Page developers can add a custom handler for the event by adding an OnConnectionsActivating attribute to the <asp:webpartmanager> element in a page, and then assigning a custom method name to the attribute.

Notes to Inheritors

Developers can override the OnConnectionsActivating(EventArgs) method in a derived WebPartManager class.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also