Click here to Skip to main content
15,889,462 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to display binary genealogy tree of members.
I have table like
HTML
MemberId  Name  ParentId  Position
1           a     null      null
2           b      1        left
3           c      1        right
4           d      2        right
5           e      2        left
6           f      3        left
7           g      3        right
8           h      4        left
9           i      4        right
10          j      5        right
11          k      6        left

Like this and I want to display the binary tree with respective position lift and right.


Please give me solution.
Posted
Updated 18-Nov-15 23:57pm
v2

1 solution

Google for recursive treecontrol loading in .NET. You could have googled for genealogy tree view in asp.net and find:
http://www.codeproject.com/Articles/531953/Family-Tree
http://www.aspsnippets.com/Articles/Create-Family-Tree-Hierarchy-Chart-from-Database-in-ASPNet-using-C-and-VBNet.aspx
http://www.geni.com/
http://www.codeproject.com/Articles/17025/Custom-TreeView-Layout-in-WPF
https://gramps-project.org/wiki/index.php?title=Main_page
http://familyshow.codeplex.com/
http://www.whollygenes.com/
http://asp-arka.blogspot.hr/2014/07/genealogy-view-family-tree-in-asp-net-c-sharp-database.html
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900