Nessun risultato. Prova con un altro termine.
Guide
Notizie
Software
Tutorial

Origine visitatore

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()
%>

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()
%>

Link copiato negli appunti

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()

%>