WebPartManager.OnConnectionsActivating(EventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.