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

protectedvoidGridView1_RowUpdating(objectsender,GridViewUpdateEventArgse){intOA_UID=i... protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
int OA_UID = int.Parse(GridView1.DataKeys[e.RowIndex].Value.ToString());
string OA_UName = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[1].Controls[0])).Text.ToString();//错误提示:指定的参数已超出有效值的范围。
参数名: index

string OA_UEmail = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[2].Controls[0])).Text.ToString();
string OA_Usex = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[3].Controls[0])).Text.ToString();
string OA_Upost = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[4].Controls[0])).Text.ToString();
string OA_Uaddress = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[5].Controls[0])).Text.ToString();
string OA_Uqq = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[6].Controls[0])).Text.ToString();
string sqlstr = "update userMessage set OA_UName='" + OA_UName + "', OA_UEmail='" + OA_UEmail + "', OA_Usex='" + OA_Usex + "', OA_Upost='" + OA_Upost + "', OA_Uaddress='" + OA_Uaddress + "', OA_Uqq='" + OA_Uqq + "' where OA_UID=" + OA_UID;
SqlConnection myConn = GetCon();
myConn.Open();
SqlCommand myCmd = new SqlCommand(sqlstr, myConn);
myCmd.ExecuteNonQuery();
myCmd.Dispose();
myConn.Close();
GridView1.EditIndex = -1;
GridViewBind();
}
怎么改?
展开
 我来答
554006164
2011-07-02 · 超过14用户采纳过TA的回答
知道答主
回答量:69
采纳率:0%
帮助的人:32.1万
展开全部
string OA_UName = ((TextBox)(GridView1.Rows[e.RowIndex].Cells[1].Controls[0])).Text.ToString();
改成
string OA_UName = (GridView1.Rows[e.RowIndex].FindControl("控件ID") as TextBox).Text;
_等红杏
2011-06-21 · 超过14用户采纳过TA的回答
知道答主
回答量:94
采纳率:0%
帮助的人:58.9万
展开全部
vector
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式