Get the gridview textbox value on Row Updating Event.

  1. GridViewRow row = (GridViewRow) grvEmployee.Rows[e.RowIndex];  
  2. TextBox textRName = (TextBox) row.Cells[1].Controls[0];  
  3. string empName = txtEmployee.Text;