System.Web.UI.WebControls.DetailsView.InsertItem Method

Inserts the current record in the data source.

Syntax

public virtual void InsertItem (bool causesValidation)

Parameters

causesValidation
true to perform page validation when the method is called; otherwise, false.

Remarks

When the System.Web.UI.WebControls.DetailsView control is in insert mode, use the DetailsView.InsertItem(bool) method to programmatically insert the current record in the data source. This method is commonly used when you need to insert the current record from outside of the System.Web.UI.WebControls.DetailsView control, such as from a different control on the page.

Note:

The System.Web.UI.WebControls.DetailsView control must be in insert mode when this method is called; otherwise, an System.Web.HttpException exception is thrown.

To specify whether page validation is performed before the insert operation, use the causesValidation parameter. Calling this method also raises the DetailsView.ItemInserted and DetailsView.ItemInserting events.

Requirements

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