This topic has not yet been rated - Rate this topic

WebPartManager.ConnectionsActivating Event

Occurs during the process of activating all the established Web Parts connections on a Web page.

Namespace:  System.Web.UI.WebControls.WebParts
Assembly:  System.Web (in System.Web.dll)
public event EventHandler ConnectionsActivating
<asp:WebPartManager OnConnectionsActivating="EventHandler" />

In the life cycle of connections, this event occurs as a page is completing its loading process, just before the ActivateConnections method is called. It is different from the WebPartsConnecting event, which involves a particular connection between WebPart or other server controls. The ConnectionsActivating event occurs when all the possible connections on a page have been connected and are about to be activated.

The ConnectionsActivating event is associated with the OnConnectionsActivating method, which raises the event. Control developers who want to extend the type of connections that can be added to a page could override the protected OnConnectionsActivating method and activate additional types of connections.

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

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

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

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.