private void Button1_Click(object sender, System.EventArgs e)
{
SqlConnection conn = new SqlConnection("server=DINGJUNJ-496C51;uid=sa;pwd=;database=student");
SqlDataAdapter cmdStudent = new SqlDataAdapter("select * from student", conn);
DataSet ds=new DataSet();
cmdStudent.Fill(ds,"student");
for(int i=0;i<DataGrid1.Items.Count;i++)
{
CheckBox cb=(CheckBox)DataGrid1.Items[i].FindControl("chkDel");
if(cb.Checked)
{
ds.Tables["student"].Rows[i].Delete();
}
}
SqlCommandBuilder cmd=new SqlCommandBuilder(cmdStudent);
cmdStudent.Update(ds,"student");
DataGrid1.DataSource=ds.Tables["student"].DefaultView;
DataGrid1.DataBind();
}
“/WebApp”应用程序中的服务器错误。
未将对象引用设置到对象的实例。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.NullReferenceException: 未将对象引用设置到对象的实例。
源错误:
行 72: {
行 73: CheckBox cb=(CheckBox)DataGrid1.Items[i].FindControl("chkDel");
行 74: if(cb.Checked)
行 75: {
行 76: ds.Tables["student"].Rows[i].Delete();