DetailsView::ItemCommand Event
Occurs when a button within a DetailsView control is clicked.
Assembly: System.Web (in System.Web.dll)
The ItemCommand event is raised when a button within the DetailsView control is clicked. This allows you to provide an event handler that performs a custom routine whenever this event occurs.
A DetailsViewCommandEventArgs object is passed to the event handler, which allows you to determine the command name and command argument of the button clicked. To determine the index of the current record, use the PageIndex property.
For more information about handling events, see NIB: Consuming Events.
The following code example demonstrates how to use the ItemCommand event to handle a button click in a DetailsView control. When the user clicks the Add Contact button, the item is added to a ListBox control.
Available since 2.0