System.Web.UI.WebControls.DetailsView.ItemInserting Event

Occurs when an Insert button within a System.Web.UI.WebControls.DetailsView control is clicked, but before the insert operation.

Syntax

public event DetailsViewInsertEventHandler ItemInserting

Remarks

The DetailsView.ItemInserting event is raised when an Insert button within a System.Web.UI.WebControls.DetailsView control is clicked, but before the insert operation. This allows you to provide an event handler that performs a custom routine, such as canceling the insert operation, whenever this event occurs.

A System.Web.UI.WebControls.DetailsViewInsertEventArgs object is passed to the event handler, which allows you to indicate that the insert operation should be canceled. To cancel the insert operation, set the System.ComponentModel.CancelEventArgs.Cancel property to true. You can also manipulate the DetailsViewInsertEventArgs.Values collection, if necessary, before the values are passed to the data source.

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