Web dynamic data tree software to show relationships ....

B

bcap

Hi,

I am looking for a software that can generate a tree of data. For
example, I am trying to track real estate relationships like a lessor,
tenant, general contractor, and subcontractors. I would like a visual
representation of this relationship based on the values in my database
showing the hierarchy much like a site map or family tree.

Can anyone recommend how I could do this or suggest a software?

Thank you,

Ray
 
E

Evertjan.

bcap wrote on 03 apr 2008 in microsoft.public.inetserver.asp.general:
I am looking for a software that can generate a tree of data. For
example, I am trying to track real estate relationships like a lessor,
tenant, general contractor, and subcontractors. I would like a visual
representation of this relationship based on the values in my database
showing the hierarchy much like a site map or family tree.

Can anyone recommend how I could do this or suggest a software?

When you have a database with records, having n pointers to other such
records in it's fields, it really is a just a simple reentrant subroutine,
[except for the graphical part].

ASP-vbscript pseudocode:

depth = -1

function getTheRecord(x)
increment depth
show the content of this record, using the depth for graphic position
getTheRecord(pointer-1)
getTheRecord(pointer-2)
.....
getTheRecord(pointer-n)
decrement depth
end function

getTheRecord starting-record-pointer-here
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,774
Messages
2,569,599
Members
45,163
Latest member
Sasha15427
Top