DetailsView.ItemCommand Event
.NET Framework 3.0
Occurs when a button within a DetailsView control is clicked.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: event DetailsViewCommandEventHandler^ ItemCommand { void add (DetailsViewCommandEventHandler^ value); void remove (DetailsViewCommandEventHandler^ value); }
/** @event */ public void add_ItemCommand (DetailsViewCommandEventHandler value) /** @event */ public void remove_ItemCommand (DetailsViewCommandEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
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 Consuming Events.
Community Additions
ADD
Show: