Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to?

Status
Not open for further replies.

lb1

Technical User
Apr 19, 2002
109
US
How can I do (program) the line that shows on top of this page as well as in other web sites.
for ex:
Home > Forum Areas > Programmers > Languages

I believe the code will need to record all the previous pages that brought me to the last page. I would like to see an example in ASP if possible.
Thanks
Louis
 
see every page you are developing will have a unique place in the tree like hiearchy.
Suppose you are developing some page which lists all languages then you are aware that starting from node 0 it will be at third position in hiearchy.

Home > Forum Areas > Programmers > Languages
0 1 2 3

So in databse tables where you are storing categories-subcategories and sub sub categories..etc, you have to track it by iterating through a loop.

Sometimes we keep all main categories hiearchywise in session as we get entering into sub categories..and sub sub categories..

If you do this way then you have to just print the Session value with HTML formatting

Right ..!!
Rushi Shroff Rushi@emqube.com
"Life is beautiful."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top