CatalogZoneBase.RaisePostBackEvent(String) Method

Definition

Carries out the actions associated with one of the zone verbs, or raises an event that posts back to the server.

protected:
 override void RaisePostBackEvent(System::String ^ eventArgument);
protected override void RaisePostBackEvent (string eventArgument);
override this.RaisePostBackEvent : string -> unit
Protected Overrides Sub RaisePostBackEvent (eventArgument As String)

Parameters

eventArgument
String

A String that contains the argument for the event.

Remarks

If the eventArgument parameter data indicates that the add verb or the close verb was clicked, then the RaisePostBackEvent method carries out the action associated with the verb, such as adding WebPart controls to the page, or closing the catalog. If the method is being called for any other reason, then the base method is invoked to raise a postback event to the server.

Notes to Inheritors

If you want to add custom verbs to a CatalogZoneBase zone, you need to override the RaisePostBackEvent(String) method to handle the event if a user clicks a custom verb.

Applies to

See also