This documentation is archived and is not being maintained.

EditorZoneBase::OKVerb Property

Gets a reference to a WebPartVerb object that applies editing changes to a control in edit mode, and hides the editing user interface (UI).

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

[PersistenceModeAttribute(PersistenceMode::InnerProperty)]
public:
virtual property WebPartVerb^ OKVerb {
	WebPartVerb^ get ();
}

Property Value

Type: System.Web.UI.WebControls.WebParts::WebPartVerb
A WebPartVerb that applies editing changes to a control and hides the editing UI.

The OK verb is referenced by the OKVerb property on a control derived from the EditorZoneBase class. It is similar to the apply verb, in that when a user clicks it, it applies editing changes that the user has made to a server control. In addition, the editing controls are hidden, the WebPart control that was being edited is no longer selected (which allows the user to edit another control), and the page remains in edit mode.

By default, the OK verb appears in the UI as a Button control. The type of button can be an image, a link, or an actual button; you can set this for all verb buttons in a zone (not for individual buttons) by setting the inherited VerbButtonType property at the zone level.

The OK verb is a zone-level control, meaning that while there might be several EditorPart controls, each editing one or more properties for the server control that is in edit mode, the OK verb works universally to apply all changes from all the EditorPart controls in the zone, and to hide all the controls except for the zone itself.

The following code example demonstrates how to access the OKVerb property both declaratively and programmatically. For the full code required to run the example, see the Example section of the EditorZoneBase class overview topic.

The first part of the code example shows how to access the OKVerb property declaratively in a Web page. This example customizes the text for the verb.

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

The second part of the example shows how to access the OKVerb programmatically, by using a toggle button to enable or disable it.

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 UI are visible, you can see the button that represents the OK verb, and click the Toggle OKVerb Enabled button to enable or disable it.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

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