My Source:
DataTable groups = new DataTable();
SqlDataAdapter adapter = new SqlDataAdapter("SELECT Name, Group_ID FROM Groups", con);
adapter.Fill(groups);
GridView1.DataSource = groups;
GridView1.DataBind();
Question: I want to add a new column containing a button that when clicked will retrieve the Group_ID.
Appreciate the help cause I am going around in loop and I am not an expert YET :) Thanks in advance.