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