tags:

views:

107

answers:

2

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

A: 

Finally I found the solution:

for example to reach a textbox inside InsertItemTemplate

TextBox uploadedfile = (TextBox)reorderList1.FindControl("_rliInsert").FindControl("txtName");

arny
A: 

This is another way to do it - (TextBox) e.Item.Cells[1].Controls[0];

Alex