protected void GridView5_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { TableCell InterviewStatusCell = e.Row.Cells[4]; FormatStatusCell.FormatInterviewStatusCell(InterviewStatusCell); } }
protected void GridView3_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { TableCell SubmissionStatusCell = e.Row.Cells[7]; FormatStatusCell.FormatSubmissionStatusCell(SubmissionStatusCell); } }