Elucubrato da saibal
Addì 21 dicembre 2001
Il modulo “suggerisci il sito ad un amico”
Ecco il codice di un primo form di prova:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
<HTML> <HEAD> <TITLE>Segnala sito</TITLE> <SCRIPT language="Javascript"> <!-- /* saibal copyright 2001 - http://www.lorenzone.it */ function destin() { var destinatario=document.forms[0].elements[1].value; var link = "http://www.html.it.it"; // url del sito da suggerire var messaggio_iniziale = "Messaggio inviato a " + destinatario; // messaggio iniziale dell'email var mittente = document.forms[0].elements[0].value; document.forms[0].elements[2].name = messaggio_iniziale; funz_destinatario = "mailto:" + destinatario + "?subject=Sito da visitare!!"; // soggetto dell'email document.forms[0].action = funz_destinatario; document.forms[0].elements[2].value = " Ciao amico/a, " + mittente + " pensa che questo sito ti potrebbe interessare " + link; // testo che segue il messaggio iniziale } //--> </SCRIPT> </HEAD> <BODY bgcolor="white" > <FORM ENCTYPE="text/plain" NAME="form" METHOD='post' ACTION='' onSubmit="return destin()"> <table cellspacing="0" cellpadding="0" width="450"> <tr> <td><font face=verdana size=2>Il tuo nome:</font></td> <td><INPUT TYPE="text" SIZE="26" MAXLENGTH=40 ></td> </tr> <tr> <td><font face=verdana size=2>Email destinatario:</font></td> <td><INPUT TYPE="text" SIZE="26" MAXLENGTH=40 ></td> </tr> <tr> <td> </td> <td><INPUT TYPE="hidden"></td> </tr> <tr> <td><font face=verdana size=2>Commenti e suggerimenti:</font></td> <td><TEXTAREA NAME="Commenti " ROWS=6 COLS=30 wrap=virtual></TEXTAREA></td> </tr> <tr> <td> </td> <td><input type="submit" value="Spedisci"> <input type="reset" value="Reset"> </td> </tr> </table> </form> </body> </html>
Lascia un Commento