FormView::InsertItem Method
Inserts the current record in the data source.
Assembly: System.Web (in System.Web.dll)
Parameters
- causesValidation
- Type: System::Boolean
true to perform page validation when the method is called; otherwise, false.
| Exception | Condition |
|---|---|
| HttpException | This method is called when the FormView control is not in insert mode. -or- The DataSourceView object associated with the FormView control is null. |
When the FormView control is in insert mode, use the InsertItem 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 FormView control, such as from a different control on the page.
Note |
|---|
The FormView control must be in insert mode when this method is called; otherwise, an HttpException is thrown. |
To specify whether page validation is performed before the insert operation, use the causesValidation parameter. Calling this method also raises the ItemInserted and ItemInserting events.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note