I have a GridView with a few TemplateField (label), and I have some control that will change the text of the label (with jquery), all works fine except the new value is available while checking in the post back like following, I keep getting the original values of the cell, what else do I have to update to make backend aware of the DOM change (via jquery)? thanks
foreach (GridViewRow row in gv.Rows)
{
decimal value= decimal.Parse(((Label)row.FindControl("LabelID")).Text);
}