SqlDataSourceView.Insert Method (IDictionary)
.NET Framework 3.0
Performs an insert operation using the InsertCommand SQL string, any parameters that are specified in the InsertParameters collection, and the values that are in the specified values collection.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public int Insert ( IDictionary values )
public function Insert ( values : IDictionary ) : int
Not applicable.
Parameters
- values
An IDictionary of parameters for the InsertCommand property to use to perform the insert database operation. If there are no parameters associated with the query or if the InsertCommand is not a parameterized SQL query, pass a null reference (Nothing in Visual Basic).
Return Value
A value that represents the number of rows inserted into the underlying database.| Exception type | Condition |
|---|---|
| The SqlDataSource cannot establish a connection with the underlying data source. | |
| The CanInsert property is false. |
The Insert method calls the ExecuteInsert method, passing the values parameter.
Community Additions
ADD
Show: