我使用複選框以gridview..to得到複選框的ID,我使用下面的代碼..複選框中的GridView
for (int i = 0; i < GridView1.Rows.Count; i++)
{
CheckBox chkDelete = (CheckBox)GridView1.Rows.Cells[0].FindControl("chkSelect");
if (chkDelete != null)
{
if (chkDelete.Checked)
{
strID = GridView1.Rows.Cells[1].Text;
idCollection.Add(strID);
}
}
}
但關鍵字「CELLS」 ..不要support..i我得到一個錯誤..「System.Web.UI.WebControls.GridViewRowCollection」不包含「單元格」的定義「
我不知道你是硬編碼值細胞樣細胞爲什麼要循環語句的方式[0]和單元格[1]如果你需要其他行數據 – Dotnet 2011-04-16 09:30:01