here i want to create treeview control dynamically.
TreeNode node = new TreeNode();TreeNode childNode = new TreeNode();node.Nodes.Add(childNode);myTreeControl.Nodes.Add(node);
here i want fetch childnode text from database and also showing if childnode is file then displaying icone for that file and if childnode is folder then display folder icone. pls help me.