this is my updatecommand code , i get new values but i want old value also how can i get it
Thanks
GridEditableItem EditItem = e.Item as GridEditableItem;
RadTextBox txtTestName = (RadTextBox)EditItem["ActiVityName"].FindControl("txtTestName");
Hashtable newValues = new Hashtable();
e.Item.OwnerTableView.ExtractValuesFromItem(newValues, EditItem);
string NewActivityName = newValues["ActivityName"].ToString();
//WANT OLD VALUE HERE