This documentation is archived and is not being maintained.

CommandField::ShowCancelButton Property

Gets or sets a value indicating whether a Cancel button is displayed in a CommandField field.

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

public:
virtual property bool ShowCancelButton {
	bool get ();
	void set (bool value);
}

Property Value

Type: System::Boolean
true to display a Cancel button in a CommandField; otherwise, false. The default is true.

Use the ShowCancelButton property to specify whether the Cancel button is displayed in a CommandField object. A Cancel button can be displayed in a CommandField field when the corresponding record in a data-bound control is in edit or insert mode. The Cancel button allows the user to cancel the edit or insert operation and returns the record to its normal display mode.

When the ButtonType property of a CommandField field is set to ButtonType.Button or ButtonType.Link, use the CancelText property to specify the text to display for a Cancel button. Alternatively, you can display an image by first setting the ButtonType property to ButtonType.Image and then setting the CancelImageUrl property.

The following code example demonstrates how to use the ShowCancelButton property to hide the Cancel button displayed when a row in a GridView control is in edit mode.

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

.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: