Bread Crums - problemer med script
Hej Eksperter,Jeg har et "bread crums" script som angiver dokumentstien ud fra de fysiske mapper.
Problemet er bare at når man kommer til andet "led" så glemmer linket mappen foran.
Så hvis den fysiske sti hedder: www.testurl.dk/mappe1/mappe2
så udskriver scriptet linket www.testurl.dk/mappe2 ...
<%
lstrPathAry = Split(Request.ServerVariables("PATH_INFO"), "/")
llngMaxIndex = UBound(lstrPathAry) - 1
lstrPath = "/"
Response.Write "<a href=""" & lstrPath & """ id=""ctl00_BreadCrumb1_LinkForside"" title=""Forside"">Forside</a>"
For llngIndex = 1 To llngMaxIndex
Server.URLPathEncode(lstrPathAry(llngIndex)) & "/"
sti = Server.HTMLEncode(lstrPathAry(llngIndex))
info = Replace(sti, "_", " ")
info = Replace(info, "oe", "ø")
info = Replace(info, "ae", "æ")
info = Replace(info, "aa", "å")
Response.Write " › <a href=""" & lstrPath & ""& Server.HTMLEncode(lstrPathAry(llngIndex)) &""">" & info & "</a>"
Next
Response.Write " › " & titel
%>