Posted on: 4/21/2015 6:43:21 PM | Views : 637

Hello All,
I have a grid view with a column of check boxes and a button to add choices and a button to fire the delete action (for checked rows).
The problem is that the grid view is populated dynamically by contents of dropdownlists and text boxes (page elements)... There is no database for this portion of the code (I am allowing the site visitor to enter their preferences into my grid).
However, once a row is added to the grid view (via the 'add to grid' button), I want the user to be able to delete their entries in the grid by selecting the check boxes and clicking the delete button.
All attempts to achieve this have failed.
Can anyone help please? The usual for each (GridViewRow row in GridView1.Rows).... is not working because there is no database just a data table for loading the page element values selected by the user. I would like to remove all checked ...

Go to the complete details ...