I am trying to get the dataset in RowCommand event. Like this

DataTable dt = (DataTable)(gvImages.DataSource);
DataTable dtChanges =  dt.GetChanges(DataRowState.Modified);

But i am getting my dataTable NULL.

Can any one help me to find the modified rows in RowCommand event???

link|improve this question

How are you updating your DataSet using your GridView control? Are you using any type of data source controls like SqlDataSource etc. – azamsharp Nov 12 '09 at 15:46
feedback

2 Answers

Store the Datatable in the Session or ViewState. Retrieve it and modify it based on user selected row and change then save back to session. On the Rowcommand you will be able to retrieve the changes because they will be stored in the session/viewstate.

link|improve this answer
feedback

See the answers to this question. Basically, the underlying datasource used by a GridView is not saved in the view state, which means it is unavailable during a post back. If you need access to the data source, you must cache it yourself.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.