I'm not sure whether I have posted this in the correct forum. I have placed a RadAjaxManager at the top of my page, put a RadAjaxPanel on the page and then dropped a treeview into it. I also have a button and a textbox. The treenodes are generated dynamically by the code. I select a node at runtime and then hit the button which is supposed to write the node's value to the textbox, but this does not occur. If I used a design time generated node, it works but I have to generate the tree from a query. Here's the button click code:
TextBox1.Text = TreeView1.SelectedNode.Value.ToString();
I am under the impression that selected node's value should persist using the ajax panel. Can you help me?
Thanks,
Dave