WebPartManager.WebPartAdding Event
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.
Occurs during the process of adding a dynamic WebPart or other server control to a WebPartZoneBase zone.
public:
event System::Web::UI::WebControls::WebParts::WebPartAddingEventHandler ^ WebPartAdding;
public event System.Web.UI.WebControls.WebParts.WebPartAddingEventHandler WebPartAdding;
member this.WebPartAdding : System.Web.UI.WebControls.WebParts.WebPartAddingEventHandler
Public Custom Event WebPartAdding As WebPartAddingEventHandler
Event Type
Remarks
The WebPartAdding event is raised by the OnWebPartAdding method after the process of adding a control to a zone has begun. This event provides an opportunity to cancel the process before it is complete. If the adding process is successful, this event is followed by the WebPartAdded event.
Page developers can provide custom handlers for the event by adding the OnWebPartAdding
attribute to the <asp:webpartmanager>
element in a page, and assigning a custom method name to the attribute.