datagrid
-
hi, i designed a datagrid using C# with asp.net,in that datagrid updating & deleting function are working proper. if i delete the data in the datagrid, the modification must took place only in that page not in the database,the database should not affected,i am using sql 2000 as backend, please help me.
jai prakash
-
hi, i designed a datagrid using C# with asp.net,in that datagrid updating & deleting function are working proper. if i delete the data in the datagrid, the modification must took place only in that page not in the database,the database should not affected,i am using sql 2000 as backend, please help me.
jai prakash
You have two option here. 1. Take one field in database,set flag 0 for deleted record. 2. create new Datatable dynamically and bind it with DataBase table and just remove rows from this table and rebind gridview with this table. Best Regard Pathan
---------------------------------------------------
-
You have two option here. 1. Take one field in database,set flag 0 for deleted record. 2. create new Datatable dynamically and bind it with DataBase table and just remove rows from this table and rebind gridview with this table. Best Regard Pathan
---------------------------------------------------