I have place an edit/update button on my gridview and I am using the following code to pickup any changes upon editting/updating.
Location_Type = ((TextBox)user_records.Rows[e.RowIndex].FindControl
("LocationTypetb")).Text;
The problem is the code does not read the changes made to the content
of the gridview, rather it returns the gridview orginal values.
