DetailsView.ItemCommand Event
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)
JScript supports the use of events, but not the declaration of new ones.
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.
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.