How to handle mouse click on a row in Datagrid in C#
for eg if i m populating a table from my database in a data grid and when i select a row .i should be able to go to a different page and display the contents of that row in text boxes .is it possible to do that in c#
You can handle
SelectionChangedevent of DataGridView and useDataGridView1.SelectedRowscollection to get reference of selected row(s).