CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Threaded View

  1. #1
    Join Date
    Nov 2008
    Posts
    15

    Get the checked nodes in Tree View in asp.Net

    Hi all,

    I created a tree view in asp.net and i use vb.net to bind the tree with me database.
    My tree is a 3-layer tree as below:

    Root
    -sub-parent1
    -child1
    -child2
    -child3
    -sub-parent2
    -child1
    -child2

    Each nodes will have a checkbox before them by using showcheckboxes=all. I want to get the event that when my checkbox is checked, I can get which is check so that other related information will be displayed in other panel. How can i make it? Since i tried the event for treeview in vb.net, there are :

    - TreeView1.SelectedNodeChanged
    - TreeView1.TreeNodeCheckChanged
    - TreeNodeCollapsed
    - etc...

    But none of them can get the change. Any hints for me?
    Last edited by pu8y; February 16th, 2009 at 02:12 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured