So that the user has some idea where they are within the site and can at a glance navigate back.
I am not very goog at working with strings, and I imagine someone has already coded something similar to what I am looking for, or I am open to suggestions.
Thanks Logo, that’s a great function I had not ever noticed before.
But, I am having problems using the array that the function creates. The expression below nav_array(i)=null does not work, how else do i tell - before I go out of range?
nav_array = Split(pageUrl, “/”)
ii=0
path=“”
for ii = 0 to ubound(nav_array,1)
path=path & nav_array(ii)
if ii<ubound(nav_array,1) then path=path & “/”
%> <% =nav_array(ii) %>
<%
Next
Thanks for your help Logan, this has really improved and automated my site navigation.
Cheers
Nathan