CatalogZoneBase.RenderVerbs(HtmlTextWriter) Method

Definition

Renders the verbs in the footer area of a CatalogZoneBase zone.

protected:
 override void RenderVerbs(System::Web::UI::HtmlTextWriter ^ writer);
protected override void RenderVerbs (System.Web.UI.HtmlTextWriter writer);
override this.RenderVerbs : System.Web.UI.HtmlTextWriter -> unit
Protected Overrides Sub RenderVerbs (writer As HtmlTextWriter)

Parameters

writer
HtmlTextWriter

An HtmlTextWriter that renders the verbs for the zone.

Remarks

The RenderVerbs method renders the add verb and the close verb within the footer area of a CatalogZoneBase zone.

Notes to Inheritors

The RenderVerbs(HtmlTextWriter) method does not handle the rendering for any custom WebPartVerb objects that a developer adds to a custom CatalogZoneBase zone. If you want to add custom verbs to a CatalogZoneBase class, you must inherit from the CatalogZoneBase class, and override the RenderVerbs(HtmlTextWriter) method, which you can use to render the custom verbs for your zone. You must also override the RaisePostBackEvent(String) method to handle the event when a custom verb is clicked by a user.

Applies to

See also