DetailsView.ItemUpdated Event
Assembly: System.Web (in system.web.dll)
public: event DetailsViewUpdatedEventHandler^ ItemUpdated { void add (DetailsViewUpdatedEventHandler^ value); void remove (DetailsViewUpdatedEventHandler^ value); }
/** @event */ public void add_ItemUpdated (DetailsViewUpdatedEventHandler value) /** @event */ public void remove_ItemUpdated (DetailsViewUpdatedEventHandler value)
JScript supports the use of events, but not the declaration of new ones.
The ItemUpdated event is raised when an Update button within the DetailsView control is clicked, but after the update operation. This allows you to provide an event handler that performs a custom routine, such as checking the results of the update operation, whenever this event occurs.
A DetailsViewUpdatedEventArgs object is passed to the event handler, which allows you to determine the number of rows affected and any exceptions that might have occurred. You can also indicate whether the exception was handled in the event handler by setting the ExceptionHandled property. To keep the control in edit mode after an update operation, set the KeepInEditMode property to true.
For more information about handling events, see Consuming Events.
The following code example demonstrates how to use the ItemUpdated event to refresh a GridView control after a DetailsView control performs an update operation. This keeps the GridView control synchronized with the DetailsView control.
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.