WebPartManager.OnWebPartsDisconnected(WebPartConnectionsEventArgs) Method

Definition

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

protected:
 virtual void OnWebPartsDisconnected(System::Web::UI::WebControls::WebParts::WebPartConnectionsEventArgs ^ e);
protected virtual void OnWebPartsDisconnected (System.Web.UI.WebControls.WebParts.WebPartConnectionsEventArgs e);
abstract member OnWebPartsDisconnected : System.Web.UI.WebControls.WebParts.WebPartConnectionsEventArgs -> unit
override this.OnWebPartsDisconnected : System.Web.UI.WebControls.WebParts.WebPartConnectionsEventArgs -> unit
Protected Overridable Sub OnWebPartsDisconnected (e As WebPartConnectionsEventArgs)

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

See also