WebPartManager.OnWebPartsDisconnected(WebPartConnectionsEventArgs) Method

Definition

Raises the WebPartsDisconnected event, which occurs after a connection between WebPart controls has ended.

C#
protected virtual void OnWebPartsDisconnected(System.Web.UI.WebControls.WebParts.WebPartConnectionsEventArgs e);

Parameters

e
WebPartConnectionsEventArgs

A WebPartConnectionsEventArgs that contains the event data.

Remarks

The OnWebPartsDisconnected method raises its corresponding event at the very end of the DisconnectWebParts method, which carries out the process of terminating a connection between two controls.

The method provides programmatic control over the process of ending a connection, so that developers can inform the user, make changes to the user interface (UI), or make other changes to the application.

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

Applies to

Proizvod Verzije
.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