Вы должны обработать событие RowUpdating
:
protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
GridViewRow row = ((GridView)sender).Rows[e.RowIndex];
String fourthCellstext = ((TextBox)(row.Cells[3].Controls[0])).Text;
// .....
}