Here's the MSDN article with example code: GridView.RowUpdating Event
Row updated and updating are not the same. Updating happens before the GridView control updates the row and updated is after the data has been updated.
In your Gridview control you need to add OnRowUpdating="TaskGridView_RowUpdating"
Assuming the value is in a textbox in the Age column this is how you would store the value in a string:
protected void TaskGridView_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
GridViewRow row = TaskGridView.Rows[e.RowIndex];
String str = ((TextBox)(row.Cells[1].Controls[0])).Text;
}