Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 115555
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T03:02:18+00:00 2026-05-11T03:02:18+00:00

I have a treeview in my masterpage. When a contentpage is loaded i want

  • 0

I have a treeview in my masterpage. When a contentpage is loaded i want to save the treeview state (which nodes are collapsed/expanded). I store the nodes in an ArrayList. Code:

private void SaveTreeviewState(TreeNodeCollection nodes) {     foreach (TreeNode t in nodes)     {         // Store expandable state in ArrayList (true or false)         //NodePaths.Add(t.Expanded);         NodePaths.Add(t);          // Check for childnods         if (t.ChildNodes.Count > 0)             // recall this method             SaveTreeviewState(t.ChildNodes);      } } 

This method is called by the unload event of the treeview object:

protected void tvManual_Unload(object sender, EventArgs e) {     SaveTreeviewState(tvManual.Nodes);      // Clear session     Session['Treeview'] = null;      // Add arraylistm to session     Session['Treeview'] = NodePaths;  } 

In the load event of the masterpage i check whether my Session is set. When the session is set i call the method which read the session.

The arraylist in the session contains all my nodes, so that’s correct. However, all nodes have the property expended set to false. This isn’t correct because i expanded mupliple nodes.

Hope you guys understand my problem and can help me out.

Thnx in advanced

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T03:02:18+00:00Added an answer on May 11, 2026 at 3:02 am

    Because the saved list is actually a list of objects (TreeNode objects), you are actually storing references to the objects. I am guessing that on tvManual_Unload the expanded state is changing or something similar. Probably you are using inprocess session which is similar to having a reference to the objects (there is no serialization) so any change to the object properties are also visible to the objects stored in session.

    You could avoid such side effect by storing values into the session. For example store a Dictionary<string, bool> where the key will contain the node path and the value will contain the expanded state.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Masterpage that has Treeview. You can select some nodes there. Based
I have TreeView control and I want to bind tree nodes' IsExpanded property to
I have a treeview in my C# code. I want to replace all existing
I have a treeview in which a user can move, delete subtrees, nodes and
I have a treeview with nodes like this: Foo (1234), and want to allow
I have a TreeView which i build up in code recursively. I would like
I have a treeview which contains, per node, a key and text. However, there
I have a treeView , and i want to know if some node can
I have a treeview (winforms) which have different item types on it. I have
I have a treeview with multiple nodes with the same text and quite nested

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.