Hi,On source code of your asp page, find the checkbox and write this as a propertyCommandArgument='<%# DataBinder.Eval(Container, "RowIndex") %>'
This will give you the index of the checkbox's row which was checked. I dont know any VB coding but I can give you some code in C#, maybe you can figure it out.protected void CheckBox1_CheckedChanged(object sender, EventArgs e){ int index=Convert.ToInt32(e.CommandArgument);//we got the index of the row //now you can reach the columns of the row here}