WebPartManager.OnWebPartsDisconnected(WebPartConnectionsEventArgs) 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 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
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.