WebPartManager.OnConnectionsActivated(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 ConnectionsActivated event to indicate that a page and its controls are loaded, and connections on the page have been activated to begin sharing data.
protected:
virtual void OnConnectionsActivated(EventArgs ^ e);
protected virtual void OnConnectionsActivated (EventArgs e);
abstract member OnConnectionsActivated : EventArgs -> unit
override this.OnConnectionsActivated : EventArgs -> unit
Protected Overridable Sub OnConnectionsActivated (e As EventArgs)
Parameters
Remarks
The OnConnectionsActivated method raises the ConnectionsActivated event after a page has completed the loading process. The method provides a way to add a handler for the event.
Page developers can add a custom handler for the event by adding an OnConnectionsActivated
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 OnConnectionsActivated(EventArgs) method in a derived WebPartManager class.