EditorZoneBase.RenderVerbs Method

Note: This method is new in the .NET Framework version 2.0.

Renders the verbs that apply at the zone level.

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

protected:
virtual void RenderVerbs (
	HtmlTextWriter^ writer
) override
protected void RenderVerbs (
	HtmlTextWriter writer
)
protected override function RenderVerbs (
	writer : HtmlTextWriter
)

Parameters

writer

The HtmlTextWriter that receives the zone's body content.

The RenderVerbs method renders the verbs whose actions apply to the entire zone: the OK verb, the cancel verb, and the apply verb. These verbs are referenced in the OKVerb, CancelVerb, and ApplyVerb properties.

The following code example demonstrates how to override the RenderVerbs method in a derived class. For the full code required to run the example, see the Example section of the EditorZoneBase class overview topic.

The custom editor zone derives from the EditorZone class so that it can be used with a zone template in the declarative markup of the Web page. The custom class overrides the RenderVerbs method, adding some text to the existing value of the Text property for each of the zone-level verbs. It then calls the base method to render all the verbs.

No code example is currently available or this language may not be supported.

When you load the page in a browser, you can select Edit Mode in the drop-down list control to switch to edit mode. You can click the verbs menu (the down arrow) in the title bar of one of the controls, and click Edit to edit the selected control. When the EditorZone control and editing user interface (UI) are visible, you can see the text has been changed on the buttons for the zone-level verbs at the bottom of the zone.

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: