string sql = "delete from tb_glxh where xhhy ='" + this.dataGridView1.CurrentRow.Cells[0].Value + "' ";
                SqlDataAdapter da = new SqlDataAdapter();
                da.SelectCommand = new SqlCommand(sql, conn);
                da.Fill(ds, "tb_glxh");
                conn.Close();
                gridbind();
这样写删除一行后,对应的textbox显示错误,找不到列值了就,应该是索引的问题,该怎么解决呢?