On an ASP.Net TreeView, we have it structured like this:
+ Maintenance
+ Parents
+ Students
+ Financial
The TreeView nodes can be expanded with the user clicking on the (+) signs. This TreeView is also expanded from within a code-behind file as well.
In the code-behind is a TreeNodeExpanded event handler which executes when the user clicks on the (+) signs.
In one of the other sub routines in the code-behind there is an .Expand(), but this causes the TreeNodeExpanded event handler to execute. We don't want that event handler to execute when the nodes are expanded with code using .Expand(). For example: The user clicks on Financial (not the + sign) which also happens to be a link that calls a Financial web page. When that page loads, there is a code-behind file that expands the TreeView nodes which is like the user clicking on the (+) sign. This coding causes the TreeNodeExpanded event handler to execute.
Is it possible to stop the TreeNodeExpanded event handler from executing under this scenario? We only want the TreeNodeExpanded handler to execute when the mouse is clicked on the (+) signs and not at any other times.