problem with checkbox and datagrid...
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
On click of the checkbox, I want the row enties of that checkbox at some other place at my .net page! How to do? Help... padma gahlot
string secondDGColumn = string.Empty; foreach (DataGridItem item in dataGridName.Items) { CheckBox chkFirstColumn = (CheckBox)item.FindControl("CheckBoxName"); secondDGColumn = item.Cells[1].Text; } Same way you can get all the values into some variables or any objects and use it on other places. I hope this solves your problem. :) Regards, Shiby