Ciao, facendo un po' di ricerche, ho trovato questo script per creare una barra di navigazione:
codice:
<%
domain = Request.ServerVariables("HTTP_HOST") 'Host
dir = Request.ServerVariables("PATH_INFO") 'Directory di base
q_string = Request.ServerVariables("QUERY_STRING") 'Query string
if q_string = "" or IsNull(q_string) then
	path_completo = dir 'Path completo
else
	path_completo = dir &"?"& q_string 'Path completo
end if
dirArr = Split(dir, ">")
pag_corrente = uBound(dirArr)
response.write pag_corrente
%>
Con
codice:
<%=path_completo%>
si stampa l'intero percosro.
Ma come linkarlo??