Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

WebPartManager::WebPartsConnecting Event

 

Occurs during the process of creating a connection between WebPart controls (or server or user controls placed in a WebPartZoneBase zone).

Namespace:   System.Web.UI.WebControls.WebParts
Assembly:  System.Web (in System.Web.dll)

public:
event WebPartConnectionsCancelEventHandler^ WebPartsConnecting {
	void add(WebPartConnectionsCancelEventHandler^ value);
	void remove(WebPartConnectionsCancelEventHandler^ value);
}

The WebPartsConnecting event is raised by the OnWebPartsConnecting method, and it signals that the connection process has begun (for example, a user has selected a control and clicked a connect verb), but is not yet completed. The event provides an opportunity to cancel a connection before it is complete. If the connection is successfully completed, this event is followed by the WebPartsConnected event.

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

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft