Exemple #1
0
 internal void OnInsertObject(InsertObjectArgs e)
 {
     if (InsertObject != null)
     {
         InsertObject(this, e);
     }
 }
        protected override int ExecuteInsert(
            IDictionary values)
        {
            // tell the page to insert the object
            InsertObjectArgs args =
                new InsertObjectArgs(values);

            _owner.OnInsertObject(args);
            return(args.RowsAffected);
        }