CatalogZoneBase.RaisePostBackEvent(String) 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.
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
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.