DataSourceView.Insert Method
Assembly: System.Web (in system.web.dll)
public: virtual void Insert ( IDictionary^ values, DataSourceViewOperationCallback^ callback )
public void Insert ( IDictionary values, DataSourceViewOperationCallback callback )
public function Insert ( values : IDictionary, callback : DataSourceViewOperationCallback )
Not applicable.
Parameters
- values
An IDictionary of name/value pairs used during an insert operation.
- callback
A DataSourceViewOperationCallback delegate that is used to notify a data-bound control when the asynchronous operation is complete.
The Insert method is the asynchronous data insertion interface for all data source view objects. The Insert method calls the ExecuteInsert method using any values supplied. The callback parameter is a delegate that a data-bound control passes to the data source view, which is used to notify the data-bound control when the ExecuteInsert operation has completed. The method uses the parameters of the DataSourceViewOperationCallback delegate to return the number of affected records and any Exception exception that is thrown by the ExecuteInsert method call.