16 references to
System.Web (16)
UI\WebControls\TreeNode.cs (2)
1554TreeNode node = ChildNodes[i]; 1610ChildNodes[i].SetExpandedRecursive(value);
UI\WebControls\TreeNodeCollection.cs (7)
156TreeNode node = this[i]; 227this[i].SetDirty(); 300if ((nodeState[i + 1] != null) && (this[i] != null)) { 301((IStateManager)this[i]).LoadViewState(nodeState[i + 1]); 340nodes[i + 1] = ((IStateManager)this[i]).SaveViewState(); 354((IStateManager)this[i]).TrackViewState(); 424currentElement = list[index];
UI\WebControls\TreeView.cs (7)
2494LoadNodeState(nodes[i], ref index, expandState, populatedNodes, selectedNodeIndex); 2581SaveNodeState(Nodes[i], ref index, expandState, true); 2853TreeNode node = Nodes[i]; 2969SaveNodeState(nodes[i], ref index, expandState, (node.Expanded == true) && rendered); 3297SaveNodeState(node.ChildNodes[i], ref lastIndex, expandState, true); 3393LoadNodeState(Nodes[i], ref index, expandState, populatedNodes, selectedNodeIndex); 3414LoadNodeState(nodes[j], ref lastIndex, expandState, populatedNodes, selectedNodeIndex);