<html>
<head>
<script Language=VbScript runat=client>
sub Invio_onclick
dim a, b, c, d, e
a = nome.value
b = cognome.value
c = via.value
d = cf.value
e = num.value
if a="" or b="" or c="" or d="" or e="" then
msgbox "Mancano dei campi essenziali",,"ERRORE"
else
end if
end sub
</script>
</head>
<body>
__________________________________________________ ___
NEL BOX MODEL HO LE TEXT E I BOTTONI:
<div id="corpo_pagina">
<span class="titolo"> ISCRIVITI</span>
Nome: <INPUT TYPE="text" NAME="nome" VALUE=""></P>
Cognome: <INPUT TYPE="text" NAME="cognome" VALUE=""></P>
Via: <INPUT TYPE="text" NAME="via" VALUE=""></P>
CF: <INPUT TYPE="text" NAME="cf" VALUE=""></P>
Numero di telefono: <INPUT TYPE="text" NAME="num" VALUE=""></P>
<INPUT TYPE="button" VALUE="Invia dati" name="Invio"> <INPUT TYPE="reset" VALUE="Reset"></P>
</div>
</body>
</html>