Hi all,
I have a table like:
Origin Destination Connection Description
A B 20 A to B
C B 50 C to B
A D 12 A to D
C D 17 C to D
B D 20 B to D
...
I have to do some type of asp search page to find the path. If Origin A and Destination D are entered, I have to display all posibilities that I can get from A - D. For instance:
Path Connection Descript.
AD 12 A to D
ABD 20 + 20 = 40 A to B, B to D
ABCD 20+50+17= 87 A to B, B to C, C to D
I have thousands of Origin and Destination. There is connection if connection > 0
I have been thinking of it but I get stuck. Any help will be appricated.
Thnks
GH
I have a table like:
Origin Destination Connection Description
A B 20 A to B
C B 50 C to B
A D 12 A to D
C D 17 C to D
B D 20 B to D
...
I have to do some type of asp search page to find the path. If Origin A and Destination D are entered, I have to display all posibilities that I can get from A - D. For instance:
Path Connection Descript.
AD 12 A to D
ABD 20 + 20 = 40 A to B, B to D
ABCD 20+50+17= 87 A to B, B to C, C to D
I have thousands of Origin and Destination. There is connection if connection > 0
I have been thinking of it but I get stuck. Any help will be appricated.
Thnks
GH