or
foreach
(GridViewRowInfo dr
in
grdHuntGroups.Rows)
{
dr.Cells[
"Presented"
].Value = 0;
dr.Cells[
"Handled"
].Value = 0;
dr.Cells[
"Voicemail"
].Value = 0;
dr.Cells[
"Abandoned"
].Value = 0;
dr.Cells[
"Overflowed"
].Value = 0;
}
for (int i = 0; i < grdHuntGroups.Rows.Count; i++)
{
grdHuntGroups.Rows[i].Cells["Presented"].Value = 0;
grdHuntGroups.Rows[i].Cells["Handled"].Value = 0;
grdHuntGroups.Rows[i].Cells["Voicemail"].Value = 0;
grdHuntGroups.Rows[i].Cells["Abandoned"].Value = 0;
grdHuntGroups.Rows[i].Cells["Overflowed"].Value = 0;
}