Treeview
How can I identify ID of a selected node using vbscript. I can get all values with the following code, but I only want the ID of the node I am clicking on:
<SCRIPT language="vbscript">
sub GetValue()
s = document.getElementById("treeCategory").innerHTML
MsgBox s
end sub
</SCRIPT>
Thanks in advance
|