Add, Edit, Delete items from GridView
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I have a form which contains a gridview which I populate in the Page_Load method from a basic datasource (an ArrayList of objects). I want to be able to add items to the gridview from a button and I also need to be able to delete and ideally edit the new entries. I've read about the GridView and it seems there are no simple ways of adding my items. Is there a way of reading the information from the GridView back into an arraylist, adding the new item to the arraylist and re-binding the gridview to the modified data source? How about the deleting and editing items?