WebPartManager.OnWebPartsConnected(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 WebPartsConnected event, which occurs after a connection has been established between WebPart controls.
protected:
virtual void OnWebPartsConnected(System::Web::UI::WebControls::WebParts::WebPartConnectionsEventArgs ^ e);
protected virtual void OnWebPartsConnected (System.Web.UI.WebControls.WebParts.WebPartConnectionsEventArgs e);
abstract member OnWebPartsConnected : System.Web.UI.WebControls.WebParts.WebPartConnectionsEventArgs -> unit
override this.OnWebPartsConnected : System.Web.UI.WebControls.WebParts.WebPartConnectionsEventArgs -> unit
Protected Overridable Sub OnWebPartsConnected (e As WebPartConnectionsEventArgs)
Parameters
A WebPartConnectionsEventArgs that contains the event data.
Remarks
The OnWebPartsConnected method raises its corresponding event at the very end of the ConnectWebParts method, which ensures that the steps necessary to connect two controls are completed before any code in the event handler runs.
The method provides programmatic control over the process of creating connections, and the associated event is a convenient point at which to update the user interface (UI) or notify a user that a connection has been established.
Page developers can create a custom handler for the WebPartsConnected event by adding the OnWebPartsConnected
attribute to the <asp:webpartmanager>
element, and assigning a custom method name to the attribute.