WebPartManager.WebPartsConnected Event

Definition

Occurs after a specific connection has been established between WebPart controls (or server or user controls).

C#
public event System.Web.UI.WebControls.WebParts.WebPartConnectionsEventHandler WebPartsConnected;

Event Type

Remarks

The WebPartsConnected event is associated with the OnWebPartsConnected method. The event is useful because after you know that a connection is complete, you might want to inform the user of the fact, or even change the user interface (UI) of the page. For example, you might want to display some graphic image that suggests a successful connection between two controls, or display a brief message, and then change the page display mode back to browse mode.

Page developers can associate a custom event handler with this event by adding the OnWebPartsConnected attribute to the <asp:webpartmanager> element in the page, and assigning a custom method name to the attribute.

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