|
 |
asp_web_howto thread: Showing the path
Message #1 by "Jon Ege Ronnenberg" <007-is-his-iq@o...> on Thu, 4 Jul 2002 15:25:17
|
|
Hi there.
What is the easiest way to write the users path dynamicaly?
Hope you can help me - Jon
Message #2 by "Aaron Fleming" <aaronf@w...> on Thu, 4 Jul 2002 10:17:27 -0400
|
|
What path?
File?
-----Original Message-----
From: Jon Ege Ronnenberg [mailto:007-is-his-iq@o...]
Sent: Thursday, July 04, 2002 11:25 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Showing the path
Hi there.
What is the easiest way to write the users path dynamicaly?
Hope you can help me - Jon
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
Message #3 by "Jon Ege Ronnenberg" <007-is-his-iq@o...> on Thu, 4 Jul 2002 16:18:52
|
|
Hi Aaron
Imagine this: You click your way into huge web-site. After 2 min. you
don't know where you are. Wouldn't it be nice to have some sort of
tracking (a path bar)? I fact you see it all the time even on p2p.wrox. I
just don't know the name of such thing or how to do it, besides writing in
HTML. I've tried the filesystem object but I don't want to write the
folder names as the user explore my site. Maybe you know a better way?
:-) Jon
> What path?
File?
Message #4 by "Aaron Fleming" <aaronf@w...> on Thu, 4 Jul 2002 11:25:19 -0400
|
|
You could try something like this and an including file:
<%
script_name=request.servervariables("script_name")
split_name=split(script_name,"/")
num_directory=ubound(split_name)-1
for counter= 1 to (num_directory)
link=link & "/"& split_name(counter) %>/
<a href="<%= link %>"><%= split_name(counter) %></a>
<%next%>
You can remove the remarks to show the full path...
af
-----Original Message-----
From: Jon Ege Ronnenberg [mailto:007-is-his-iq@o...]
Sent: Thursday, July 04, 2002 12:19 PM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: Showing the path
Hi Aaron
Imagine this: You click your way into huge web-site. After 2 min. you
don't know where you are. Wouldn't it be nice to have some sort of
tracking (a path bar)? I fact you see it all the time even on p2p.wrox.
I
just don't know the name of such thing or how to do it, besides writing
in
HTML. I've tried the filesystem object but I don't want to write the
folder names as the user explore my site. Maybe you know a better way?
:-) Jon
> What path?
File?
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
|
|
 |