1.调用RowUpdating事件使用的是protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)这个方法
2.获取修改后的值使用e.NewValues["绑定到gridview的列名"],返回的是object类型,你需要类型转换成所需的类型。而不是((TextBox)e.Row.Cells[1].FindControl("TextBox1")).Text