Grazie al seguente script, è possibile determinare da dove proviene il nostro visitatore e fornire il link alla pagina precedente.
<%
function provenienza()
dim strLastpage
strlastpage = request.serverVariables("HTTP_REFERER")
if strLastpage="" then
provenienza="Grazie per averci subito visitato!!!"
else
provenienza="<a href="""&strLastpage&""">Pagina Precedente</a>"
end if
end function
response.write provenienza()
%>