DetailsView.ItemCreated Event
.NET Framework 3.0
Occurs when a record is created in a DetailsView control.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: event EventHandler^ ItemCreated { void add (EventHandler^ value); void remove (EventHandler^ value); }
/** @event */ public void add_ItemCreated (EventHandler value) /** @event */ public void remove_ItemCreated (EventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
The ItemCreated event is raised each time a record is created in a DetailsView control. This can occur when the control is first rendered, or when the user navigates to another record. You can use this event to provide an event handler that performs a custom routine, such as adding custom content to a row, whenever this event occurs.
You can access the header, footer, and pager rows in the DetailsView control by using the HeaderRow, FooterRow, TopPagerRow, or BottomPagerRow properties, respectively. To access one of the data rows, use the Rows collection.
For more information about handling events, see Consuming Events.
Community Additions
ADD
Show: