Hi there,
I am using an Ajax ReorderList in my content page and I would like to get the value of text box or a label in code behind(C#).
However I always receive a null value,
any ideas?
Thanks in advance
Hi there,
I am using an Ajax ReorderList in my content page and I would like to get the value of text box or a label in code behind(C#).
However I always receive a null value,
any ideas?
Thanks in advance
Finally I found the solution:
for example to reach a textbox inside InsertItemTemplate
TextBox uploadedfile = (TextBox)reorderList1.FindControl("_rliInsert").FindControl("txtName");