System.Web.UI.WebControls.DetailsView.ItemCreated Event

Occurs when a record is created in a System.Web.UI.WebControls.DetailsView control.

Syntax

public event EventHandler ItemCreated

Remarks

The DetailsView.ItemCreated event is raised each time a record is created in a System.Web.UI.WebControls.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 System.Web.UI.WebControls.DetailsView control by using the DetailsView.HeaderRow, DetailsView.FooterRow, DetailsView.TopPagerRow, or DetailsView.BottomPagerRow properties, respectively. To access one of the data rows, use the DetailsView.Rows collection.

For more information about handling events, see Consuming Events.

Requirements

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0