指定的参数已超出有效值的范围。 参数名: index 50
protectedvoidUpdateSB_RowDeleting1(objectsender,GridViewDeleteEventArgse){SqlConnecti...
protected void UpdateSB_RowDeleting1(object sender, GridViewDeleteEventArgs e)
{
SqlConnection con = dbhelp.Connection;
TextBox Sno, Bno;
Sno = (TextBox)UpdateSB.Rows[e.RowIndex].Cells[0].Controls[0];
Bno = (TextBox)UpdateSB.Rows[e.RowIndex].Cells[1].Controls[0];
string sql = "delete from SB where Sno='" + Sno.Text + "'and Bno='"+Bno +"'";
SqlCommand cmd = new SqlCommand(sql, con);
try
{
cmd.ExecuteNonQuery();
con.Close();
UpdateSB.EditIndex = -1;
Mybind();
}
catch (Exception ee)
{
Response.Write(ee);
}
}
错误提示:指定的参数已超出有效值的范围。
参数名: index
怎么改?
Bno.Text改过了,但还是错
越界了,那应该怎么改啊?
我是把gridview 绑定了SB表,SB表是图书借阅表,里面的属性有Sno学生学号,Bno图书学好,time节约时间,back归还时间。在gridview中添加了一个删除列,现在我想实现删除某条记录。那位大侠看看语句应该怎么写,具体的写法啊,因为我即使知道越界了也是不会改,呵呵 展开
{
SqlConnection con = dbhelp.Connection;
TextBox Sno, Bno;
Sno = (TextBox)UpdateSB.Rows[e.RowIndex].Cells[0].Controls[0];
Bno = (TextBox)UpdateSB.Rows[e.RowIndex].Cells[1].Controls[0];
string sql = "delete from SB where Sno='" + Sno.Text + "'and Bno='"+Bno +"'";
SqlCommand cmd = new SqlCommand(sql, con);
try
{
cmd.ExecuteNonQuery();
con.Close();
UpdateSB.EditIndex = -1;
Mybind();
}
catch (Exception ee)
{
Response.Write(ee);
}
}
错误提示:指定的参数已超出有效值的范围。
参数名: index
怎么改?
Bno.Text改过了,但还是错
越界了,那应该怎么改啊?
我是把gridview 绑定了SB表,SB表是图书借阅表,里面的属性有Sno学生学号,Bno图书学好,time节约时间,back归还时间。在gridview中添加了一个删除列,现在我想实现删除某条记录。那位大侠看看语句应该怎么写,具体的写法啊,因为我即使知道越界了也是不会改,呵呵 展开
2个回答
展开全部
string sql = "delete from SB where Sno='" + Sno.Text + "'and Bno='"+Bno +"'";
你这一句的Bno应该是一个对象,不能直接用,应该是Bno.Text
你这一句的Bno应该是一个对象,不能直接用,应该是Bno.Text
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询