Hi
You can column by using
Label1.Text = grdEmpDet.Columns[1].HeaderText;
you can also ron for loop for finding each column name in grid
for (int i = 0; i <= grdEmpDet.Columns.Count; i++)
{
Label1.Text = grdEmpDet.Columns[i].HeaderText;
}
Hope this will help you