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.

protected:
 virtual void OnConnectionsActivating(EventArgs ^ e);
protected virtual void OnConnectionsActivating (EventArgs e);
abstract member OnConnectionsActivating : EventArgs -> unit
override this.OnConnectionsActivating : EventArgs -> unit
Protected Overridable Sub OnConnectionsActivating (e As EventArgs)

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

See also