I've disabled the postbacks on the frame that has the treeview. When I click a node I have an event that fires in Javascript and passed a parameter to another frame in the webpage. Problem is, I don't know who to extract anything other than the selected node value, here is my code:
function treeview_click()
{
var iNode = 0;
iNode = document.getElementById('TreeView1_SelectedNode').value;
window.parent.frames(2).location.href = 'content1.aspx?NodeNo=' + iNode;
}
This just gives back the node number that is set by the control, I want to pull back any of the other information set in the node, i.e. string text and string value set on creation
Can anyone help, thankyou for reading this
John