将GridView的数据行传递到另一个Web窗体

时间:2018-04-07 02:42:30

标签: c# .net visual-studio

我正在将SQL数据检索到数据网格视图中,现在我希望将特定行数据放入其他网络,但我得到空对象引用。

  

System.NullReferenceException:'对象引用未设置为   一个对象的实例。'

public void dgvEmployee_CellContentClick(object sender, DataGridViewCellEventArgs e) 
{ 
    this.Close();
    Update up = new Update();
    up.IdBox.Text = this.dgvEmployee.CurrentRow.Cells[0].Value.ToString(); 
    up.NameBox.Text = this.dgvEmployee.CurrentRow.Cells[1].Value.ToString(); 
    up.ManagerBox.Text = this.dgvEmployee.CurrentRow.Cells[2].Value.ToString(); 
    up.ShowDialog();
}

0 个答案:

没有答案