Salve a tutti,
ho trovato una risorsa che mi sembra interessante e serve per nascondere la propria email agli spammer, ho seguito le istruzioni ma qualunque indirizzo scriva mi raddoppia l'ultima lettera: se è it decripta itt se com, comm, ho sbagliato qualcosa io oppure c'è un errore nello script della risorsa. Lo script è visualizzabile all'indirizzo: http://www.larianaweb.com/antispam.asp e la pagina asp di prova che ho fatto è questa:
<html>
<head>
<title>Nascondere e-mail agli spammer</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<%frase = " WSKOWKSV@WSYCSDY.SD"
newfrase = " "
shift = 10
for I=1 to len(frase)
char=mid(frase, I, 1)
for k = 65 to 90
if char = chr(k) then
if (k-shift)>=65 then
newchar = chr(k-shift)
exit for
else
newchar = chr(k-shift+26)
exit for
end if
else
newchar = char
end if
next
newfrase=newfrase&newchar
next
newfrase = lcase(newfrase)%>
clicca qui per inviare email
</body>
Un grazie anticipato
</html>

Rispondi quotando