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::WebPartClosed Event

 

Occurs when a WebPart control (or server or user control) is removed from a page.

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

public:
event WebPartEventHandler^ WebPartClosed {
	void add(WebPartEventHandler^ value);
	void remove(WebPartEventHandler^ value);
}

The WebPartClosed event indicates that a control has been successfully closed, either by a user or programmatically. To close a WebPart control means to remove it from a page so that it is not rendered, and also to place it in a special holding object called a page catalog. A page catalog, which corresponds to the PageCatalogPart control, maintains references to closed WebPart controls for each page. If a PageCatalogPart control is declared on a page within a CatalogZone zone, users can switch a page into catalog display mode, and add back to a page any controls that were previously closed.

The WebPartClosed event is associated with the OnWebPartClosed method, which both raises the event and provides a handler for it.

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

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