DataGrid.OnDeleteCommand Method
.NET Framework 3.0
Raises the DeleteCommand event. This allows you to provide a custom handler for the event.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
protected void OnDeleteCommand ( DataGridCommandEventArgs e )
protected function OnDeleteCommand ( e : DataGridCommandEventArgs )
Not applicable.
Parameters
- e
A DataGridCommandEventArgs that contains event data.
Use the OnDeleteCommand method to provide a custom handler for the DeleteCommand event.
The DeleteCommand event is raised when the Delete button is clicked for an item in the DataGrid control.
A typical handler for the DeleteCommand event removes the selected item from the data source and then rebinds the data to the DataGrid control.
Raising an event invokes the event handler through a delegate. For more information, see Raising an Event.
Notes to Inheritors: When overriding OnDeleteCommand in a derived class, be sure to call the base class's OnDeleteCommand method. For more information about handling events, see Consuming Events.Community Additions
ADD
Show: