I set value in a hidden field like this:
((TextBox)ctrl).Attributes.Add("onchange", "document.getElementById('" +
((BasePage)Page).GetControl(Page, "ChangedRowsIndicesHiddenField").ClientID +
"').value.concat('" + row.RowIndex + ",');");
In page source it looks like this:
onchange="document.getElementById('ctl00_CPHDefault_tcTPS_TPProd_ctl01_tcProduction_TPNewTitlesStatus_ChangedRowsIndicesHiddenField').value.concat('0,');"
I want to be able to retrieve and use this value from code-behind on postback (button click):
string ChangedRowsIndices = ChangedRowsIndicesHiddenField.Value.TrimEnd(',');
But because of some reason, ChangedRowsIndices is always empty. Could you please help me with this? What am I doing wrong? Here is the hidden field:
<input id="ChangedRowsIndicesHiddenField" type="hidden" runat="server" />
Thanks.