In my project I am using a session table. I am binding this session table to the gridview, in gridview row updating event. I keep the records of session table to a datatable and I use the code below code for updating:
dttable.rows(e.rowindex)("name")="arun"
dttable.Acceptchanges()
My problem is when using PageIndexChanging, I can edit in the 1st page of GridView without any problem, but in second page it is editing the one corresponding to e.RowIndex in the first page, so no change occurs other than the first page in the gridview.
Please help.