How to use the TreeNode object in selection mode in ASP.NET in C#
You can use TreeNode in one of two modes:
– In selection mode, clicking the node posts back the page and raises the TreeView.SelectedNodeChanged event. This is default mode for all nodes.
– In navigation mode, clicking a node navigates to a new page, and the SelectedNodeChanged event is not raised. You …