指定的参数已超出有效值的范围。 参数名: index
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.Text +"'";
SqlCommand cmd = new SqlCommand(sql, con);
try
{
cmd.ExecuteNonQuery();
con.Close();
UpdateSB.EditIndex = -1;
Mybind();
}
catch (Exception ee)
{
Response.Write(ee);
}
}
错误提示:指定的参数已超出有效值的范围。
参数名: index
怎么改? 展开
{
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.Text +"'";
SqlCommand cmd = new SqlCommand(sql, con);
try
{
cmd.ExecuteNonQuery();
con.Close();
UpdateSB.EditIndex = -1;
Mybind();
}
catch (Exception ee)
{
Response.Write(ee);
}
}
错误提示:指定的参数已超出有效值的范围。
参数名: index
怎么改? 展开
展开全部
通篇看,代码应该是没问题的,可能出这个异常的代码可能是:
Sno = (TextBox)UpdateSB.Rows[e.RowIndex].Cells[0].Controls[0];
Bno = (TextBox)UpdateSB.Rows[e.RowIndex].Cells[1].Controls[0];
这两个找控件的地方和你的Mybind方法。
找控件建议你用UpdateSB.Rows[e.RowIndex]。FindControl("name")这样可读性高些。
还有,建议你自己调试一下吧。
Sno = (TextBox)UpdateSB.Rows[e.RowIndex].Cells[0].Controls[0];
Bno = (TextBox)UpdateSB.Rows[e.RowIndex].Cells[1].Controls[0];
这两个找控件的地方和你的Mybind方法。
找控件建议你用UpdateSB.Rows[e.RowIndex]。FindControl("name")这样可读性高些。
还有,建议你自己调试一下吧。
展开全部
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.Text +"'";
把这四行换成
string sno=UpdateSB.Rows[e.RowIndex].Cells[0].Text;
string bno=UpdateSB.Rows[e.RowIndex].Cells[1].Text;
string sql = "delete from SB where Sno='" +sno+ "'and Bno='"+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.Text +"'";
把这四行换成
string sno=UpdateSB.Rows[e.RowIndex].Cells[0].Text;
string bno=UpdateSB.Rows[e.RowIndex].Cells[1].Text;
string sql = "delete from SB where Sno='" +sno+ "'and Bno='"+bno +"'";
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询