HI ,
i m using old treeview i.e Microsoft.Web.UI.WebControls.TreeView in my existing project, which is not working in all browsers(IE10), after searching in bing/google i came to know that this treeview is no more in use, which is replaced by System.Web.UI.WebControls.TreeView
so i m trying to replace the new treeview. here i m facing some issues with some properties. can any one knows these equivalent properties for new System.Web.UI.WebControls.TreeView.
Microsoft.Web.UI.WebControls.TreeView TV1;
1) TV1.TreeNodeSrc = xml.OuterXml;
2)string index = TV1.SelectedNodeIndex;
3) txtObject.Text = TV1.GetNodeFromIndex(nodeIndex).Text;
4) tnDDAO(local variable) = ((MSWebControls.TreeNode)TV1.GetNodeFromIndex(nodeIndex).Parent);
Thanks
ravi
Go to the complete details ...