关于gridview的求助!!
string ID = this.GridView1.DataKeys[e.RowIndex].Value.ToString();//GridViewRow row = this.GridView1.Rows[e.RowIndex]; //定义更新行对象
string username = ((TextBox)GridView1.Rows[e.RowIndex].Cells[0].FindControl("TextBox4")).Text;
string userpwd = ((TextBox)GridView1.Rows[e.RowIndex].Cells[1].FindControl("TextBox5")).Text;
string popedom = ((TextBox)GridView1.Rows[e.RowIndex].Cells[2].FindControl("TextBox6")).Text;
说
string popedom = ((TextBox)GridView1.Rows[e.RowIndex].Cells[2].FindControl("TextBox6")).Text;
指定的参数已超出有效值的范围。
参数名: index
即便是能编辑的显示的也不是所填写的内容
显示不是0就是-1
是怎么回事呢?
我是想实现编辑功能
点击编辑可以编辑
但是点击更新
就出现了以上问题