指定的参数已超出有效值的范围。 参数名: index

protectedvoidGridView1_RowUpdating(objectsender,GridViewUpdateEventArgse){intid=int.P... protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
int id = int.Parse(GridView1.DataKeys[e.RowIndex].Value.ToString());
string a = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[1].Controls[0])).Text.ToString();
string b = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[2].Controls[0])).Text.ToString();
string c = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[3].Controls[0])).Text.ToString();
conn.Open();
OleDbCommand cmd = new OleDbCommand("update radio set classification='" + a + "', radio='" + b + "', url='" + c + "' where ID=" + id, conn);
cmd.ExecuteNonQuery();
conn.Close();
GridView1.EditIndex = -1;
dataBind();
}
后台更新数据时就出现错误,在string c这块就过不去了,请高手帮忙
展开
 我来答
554006164
2011-05-24 · 超过14用户采纳过TA的回答
知道答主
回答量:69
采纳率:0%
帮助的人:32.1万
展开全部
string c = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[3].Controls[0])).Text.ToString();
改成这种方式 试下
string c = (GridView1.Rows[e.RowIndex].FindControl("控件ID") as TextBox).Text.ToString();
zerowpt
2012-05-03 · TA获得超过449个赞
知道小有建树答主
回答量:416
采纳率:0%
帮助的人:97.4万
展开全部
楼主你怎么解决的?求解
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式