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

Visita Casuale

Grazie al seguente script, è possibile inviare il visitatore a visitare in modo casuale un web tra quelli in elenco:

<%
function pagina()

randomize()

dim strLink(4)
strLink(0) = "http://www.innovatel.it"
strLink(1) = "http://www.html.it"
strLink(2) = "http://freeasp.html.it"
strLink(3) = "http://pro.html.it"
strLink(4) = "http://freephp.html.it"
dim intCasuale
intCasuale = ubound(strLink) * rnd()

response.redirect strLink(intCasuale)

end function
call pagina()
%>

Grazie al seguente script, è possibile inviare il visitatore a visitare in modo casuale un web tra quelli in elenco:

<%
function pagina()

randomize()

dim strLink(4)
strLink(0) = "http://www.innovatel.it"
strLink(1) = "http://www.html.it"
strLink(2) = "http://freeasp.html.it"
strLink(3) = "http://pro.html.it"
strLink(4) = "http://freephp.html.it"
dim intCasuale
intCasuale = ubound(strLink) * rnd()

response.redirect strLink(intCasuale)

end function
call pagina()
%>

Link copiato negli appunti

Grazie al seguente script, è possibile inviare il visitatore a visitare in modo casuale un web tra quelli in elenco:

<%

function pagina()

randomize()

dim strLink(4)

strLink(0) = "http://www.innovatel.it"

strLink(1) = "http://www.html.it"

strLink(2) = "http://freeasp.html.it"

strLink(3) = "http://pro.html.it"

strLink(4) = "http://freephp.html.it"

dim intCasuale

intCasuale = ubound(strLink) * rnd()

response.redirect strLink(intCasuale)

end function

call pagina()

%>