Click here to Skip to main content
15,891,375 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Hello, I am new in C# development. i am going through a problem of gridview. i want to edit a particular cell of a row and insert that row into sql server and refresh gridview with red color for previous value and green color for changed value. and i also want to update a log table for every transaction happened in my application. so how can i get which row and column of datagrid modified so i can update log table with that column name.
Posted

1 solution

Assumung you datagrid is called dataGrid1 your code would be
C#
int row = dataGrid1.CurrentCell.RowNumber;
int column = dataGrid1.CurrentCell.ColumnNumber;

you can add this to the onchanged or onselectionchanged event on the datagrid. you can also find out rowNumber and ColumnNumber with the eventargs btw.
 
Share this answer
 
Comments
Member 8172875 6-Aug-12 3:46am    
but i want code. how to add a new row of edited cell in database. on refresh i want both the data with different color on modified cell
Member 8172875 6-Aug-12 6:25am    
i didnt find RowNumber.. i think its RowIndex rather than RowNumber

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900