I have a gridview
where empty cells are filled with strings when clicked using javascript
to manipulate the innerHTML
property.
Now, I want to save these changes in a 2D array once the index of my combobox
is altered. However, during the selectedindexchanged
event, when I loop through the gridview
, none of the cell changes are visible – all cells appear empty again. It seems like the changes made are not being saved persistently.
What steps should I take to address this issue?