GridView中有複選框列,字符串值「P」正在檢查中。所以,我想計算具有相同「P」值的該列的所有行。我想下面的代碼:想要在GridView的列中獲得總共相同的字符串值
int sumP = 0;
public void countpresent() //To count all Present Students in the gridview
{
for (int i = 0; i < (dgvAttendance.Rows.Count-1); i++)
{
if (dgvAttendance.Rows[i].Cells["Present"].Value.ToString() == "P")
{
sumP += 1;
}
}
lblPresent.Text = sumP.ToString();
}
它正在爲所有的刺「P」,但是當它顯示null值,它拋出一個異常「notset一個對象的實例對象引用」。在異常詳細信息中顯示「NullReferenceException」。 請任何一個建議的東西,以幫助
感謝您的建議和充分的解釋。非常感謝您 –