System.Web.UI.WebControls.FormViewDeleteEventArgs Class

Provides data for the FormView.ItemDeleting event.

See Also: FormViewDeleteEventArgs Members

Syntax

public class FormViewDeleteEventArgs : System.ComponentModel.CancelEventArgs

Remarks

The System.Web.UI.WebControls.FormView control raises the FormView.ItemDeleting event when a Delete button (a button with its CommandName property set to "Delete") within the control is clicked, but before the System.Web.UI.WebControls.FormView control deletes the record. This allows you to provide an event-handling method that performs a custom routine, such as verifying a record before deleting it, whenever this event occurs.

A System.Web.UI.WebControls.FormViewDeleteEventArgs object is passed to the event-handling method, which allows you to determine the index of the record being deleted and to indicate that the delete operation should be canceled. To determine the index of a record, use the FormViewDeleteEventArgs.RowIndex property. To cancel the delete operation, set the System.ComponentModel.CancelEventArgs.Cancel property to true. You can also access the key fields and non-key fields by using the FormViewDeleteEventArgs.Keys and FormViewDeleteEventArgs.Values properties, respectively. These values are useful if you want to verify the record before deleting it.

Note:

It is possible to modify the key field values and non-key field values in the FormViewDeleteEventArgs.Keys and FormViewDeleteEventArgs.Values properties, respectively. If you change these values, the record that corresponds to the new values will be deleted.

For more information about handling events, see Consuming Events.

For a list of initial property values for an instance of the System.Web.UI.WebControls.FormViewDeleteEventArgs class, see the FormViewDeleteEventArgs.#ctor(int) constructor.

Requirements

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0