GridViewDeleteEventArgs Class
Provides data for the RowDeleting event.
System::EventArgs
System.ComponentModel::CancelEventArgs
System.Web.UI.WebControls::GridViewDeleteEventArgs
Assembly: System.Web (in System.Web.dll)
The GridViewDeleteEventArgs type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | GridViewDeleteEventArgs | Initializes a new instance of the GridViewDeleteEventArgs class. |
| Name | Description | |
|---|---|---|
![]() | Cancel | Gets or sets a value indicating whether the event should be canceled. (Inherited from CancelEventArgs.) |
![]() | Keys | Gets a dictionary of field name/value pairs that represent the primary key of the row to delete. |
![]() | RowIndex | Gets the index of the row being deleted. |
![]() | Values | Gets a dictionary of the non-key field name/value pairs for the row to delete. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The GridView control raises the RowDeleting event when a Delete button is clicked, but before the GridView control deletes the record. (A Delete button is a button control whose CommandName property is set to "Delete".) You can perform a custom routine whenever this event occurs, such as canceling the delete operation.
A GridViewDeleteEventArgs object is passed to the event handler. This enables you to determine the index of the row being deleted and to cancel the delete operation. To cancel the delete operation, set the Cancel property of the GridViewDeleteEventArgs object to true. You can also manipulate the Keys and Values collections before the values are passed to the data source.
For more information about how to handle events, see Consuming Events.
For a list of initial property values for an instance of GridViewDeleteEventArgs, see the GridViewDeleteEventArgs constructor.
The following example shows how to use the GridViewDeleteEventArgs object that is passed to the event handler. The code cancels the delete operation if the user tries to remove the last record from a GridView control.
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.


