ListViewDeletedEventArgs Class
Provides data for the ItemDeleted event.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
The ListViewDeletedEventArgs type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | ListViewDeletedEventArgs | Initializes a new instance of the ListViewDeletedEventArgs class. |
| Name | Description | |
|---|---|---|
![]() | AffectedRows | Gets the number of rows that were affected by the delete operation. |
![]() | Exception | Gets the exception, if any, that was raised during the delete operation. |
![]() | ExceptionHandled | Gets or sets a value that indicates whether an exception that was raised during the delete operation was handled in the event handler. |
![]() | Keys | Gets the key or keys for the deleted item. |
![]() | Values | Gets the non-key field values for the deleted item. |
| 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 ListView control raises the ItemDeleted event when a Delete button in the control is clicked or the DeleteItem method is called, but after the ListView control deletes the item. (A Delete button is a button whose CommandName property is set to "Delete".) This enables you to provide an event-handling method that performs a custom routine whenever this event occurs, such as checking the results of a delete operation.
A ListViewDeletedEventArgs object is passed to the event-handling method. This object enables you to determine the number of items affected and any exceptions that might have occurred. To determine the number of items that were affected by the delete operation, use the AffectedRows property. To determine whether any exceptions occurred, use the Exception property. You can indicate whether you have handled the exception in the event-handling method by setting the ExceptionHandled property.
Note |
|---|
If an exception occurs during the delete operation and the ExceptionHandled property is set to false, the ListView control re-throws the exception. |
To access the key fields of the deleted item, use the Keys property. To access non-key fields of the deleted item, use the Values property. For a list of initial property values for an instance of the ListViewDeletedEventArgs class, see the ListViewDeletedEventArgs constructor.
The following example shows how to use the ListViewDeletedEventArgs object to determine whether an exception occurred during a delete operation. The ListViewDeletedEventArgs object is passed to the event-handling method for the ItemDeleted event.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, 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.



Note