c# - Insert Update Delete in DataTable in gridview -
how insert update , delete record using datatable using gridview(asp.net , c#.net).
datatable columns are
- id
- studentname
- city
all crud operations(insert, update, delete) operation should perform using datatable. no database server required.
binding gridview datatable should let same operations:
mygridview.datasource = mydatatable; mygridview.databind();
Comments
Post a Comment