Ciao a tutti, premesso che non sono molto pratico del linguaggio html, il mio problema è il seguente: ho creato due pagine asp per l'invio del modulo (una in cui ho inserito i form per i dati e l'altra pagina che li processa e li manda alla mia e-mail), purtroppo però ho commesso qualche errore e al momento dell'invio non mi funziona....sapreste aiutarmi?!?!? posto qui i codici delle due pagine.
Pagina in cui sono inseriti i form
<form action="clienti.asp" method="post" name="Richiesta Cliente" id="Richiesta Cliente">
<fieldset><legend class="ServiziTitoletti">Richiesta Cliente</legend>
<table width="447" border="0">
<tr>
<td width="81"><div align="right">
</div>
<span class="Stile29">
<label for="textfield"> </label>
<label for="textfield"></label>
<label for="textfield"></label>
<label for="textfield"></label>
</span> <label for="textfield"><div align="right"><span class="Stile42">Nome</span></div>
</label> </td>
<td width="144"><input name="Nome" type="text" class="Stile29" id="Nome" maxlength="50"></td>
<td width="60"><div align="right">
</div>
<span class="Stile29">
<label for="label"> </label>
<label for="label"></label>
<label for="label"></label>
<label for="label"></label>
</span> <label for="label"><div align="right"><span class="Stile42">Cognome</span></div>
</label> </td>
<td width="144"><input name="Cognome" type="text" class="Stile29" id="label" maxlength="50"></td>
</tr>
<tr>
<td><div align="right">
</div>
<span class="Stile29">
<label for="label2"> </label>
<label for="label2"></label>
<label for="label2"></label>
<label for="label2"></label>
</span> <label for="label2">
<div align="right" class="Stile42">Rag. Sociale</div>
</label> </td>
<td><input name="Ragione Sociale" type="text" class="Stile29" id="Ragione Sociale" maxlength="50"></td>
<td><div align="right">
</div>
<span class="Stile29">
<label for="label3"> </label>
<label for="label3"></label>
<label for="label3"></label>
<label for="label3"></label>
</span> <label for="label3"><div align="right"><span class="Stile42">Città</span></div>
</label> </td>
<td><input name="Città" type="text" class="Stile29" id="label2" maxlength="50"></td>
</tr>
<tr>
<td><div align="right">
</div>
<span class="Stile29">
<label for="label4"> </label>
<label for="label4"></label>
<label for="label4"></label>
<label for="label4"></label>
</span> <label for="label4"><div align="right"><span class="Stile42">Provincia</span></div>
</label> </td>
<td><input name="Provincia" type="text" class="Stile29" id="label3" maxlength="50"></td>
<td><div align="right">
</div>
<span class="Stile29">
<label for="label5"> </label>
<label for="label5"></label>
<label for="label5"></label>
<label for="label5"></label>
</span> <label for="label5"><div align="right"><span class="Stile42">CAP</span></div>
</label> </td>
<td><input name="CAP" type="text" class="Stile29" id="label5" maxlength="50"></td>
</tr>
<tr>
<td><div align="right">
</div>
<span class="Stile29">
<label for="label6"> </label>
<label for="label6"></label>
<label for="label6"></label>
<label for="label6"></label>
</span> <label for="label6"><div align="right"><span class="Stile42">Indirizzo</span></div>
</label> </td>
<td><input name="Indirizzo" type="text" class="Stile29" id="label4" maxlength="50"></td>
<td><div align="right">
</div>
<span class="Stile29">
<label for="label7"> </label>
<label for="label7"></label>
<label for="label7"></label>
<label for="label7"></label>
</span> <label for="label7">
<div align="right"><span class="Stile42">E-mail</span></div>
</label> </td>
<td><input name="Email" type="text" class="Stile29" id="label6" maxlength="50"></td>
</tr>
<tr>
<td><div align="right" class="Stile40"><span class="Stile42">Telefono</span></div></td>
<td><input name="Telefono" type="text" class="Stile29" id="label7" maxlength="50"></td>
<td><div align="right" class="Stile40">
<span class="Stile44">
<label for="textfield" class="Stile42"><strong>Cellulare</strong></label>
</span> </div></td>
<td><span class="Stile40">
<input name="Cellulare" type="text" class="Stile29" id="Cellulare" maxlength="50">
</span></td>
</tr>
</table>
<table width="517" border="0">
<tr>
<td width="20"><input type="checkbox" name="Privacy" value="checkbox" id="Privacy"></td>
<td width="507"><div align="justify" class="Stile42"> <strong>
<label for="label10"><span class="Stile29"> Accetto il trattamento dei miei dati personali ai sensi del D.Lgs. 196/2003 </span></label>
</strong> </div>
</label></td>
</tr>
</table>
<table width="95" border="0">
<tr>
<td><div align="center">
<input name="Invia" type="submit" class="Stile29" id="Invia" value="Invia">
</div></td>
<td><div align="center">
<input name="Annulla" type="reset" class="Stile29" id="Annulla" value="Annulla">
</div></td>
</tr>
</table>
</fieldset>
</form>
Pagina che processa i dati
<body>
<%
Dim Nome, Cognome. Rag. Sociale, Citta, Provincia, CAP, Indirizzo, E-mail, Telefono, Cellulare, Privacy
Nome=Trim(Request("Nome"))
Cognome=Trim(Request("Cognome"))
Rag. Sociale=Trim(Request("Rag. Sociale"))
Citta=Trim(Request("Citta"))
Provincia=Trim(Request("Provincia"))
CAP=Trim(Request("CAP"))
Indirizzo=Trim(Request("Indirizzo"))
E-mail=Trim(Request("E-mail"))
Telefono=Trim(Request("Telefono"))
Cellulare=Trim(Request("Cellulare"))
Pricvacy=Trim(Request("Privacy"))
if Nome="" or Cognome="" or Rag. Sociale="" or Citta="" or Provincia="" or CAP="" or Indirizzo="" or E-mail="" or Telefono="" or Cellulare="" or Privacy="" then Response.Redirect "Diventa Cliente.asp"
Else
End if
Response.Write Nome & "<br>"
Response.Write Cognome & "<br>"
Response.Write Rag. Sociale & "<br>"
Response.Write Citta & "<br>"
Response.Write Provincia & "<br>"
Response.Write CAP & "<br>"
Response.Write Indirizzo & "<br>"
Response.Write E-mail & "<br>"
Response.Write Telefono & "<br>"
Response.Write Cellulare & "<br>"
Response.Write Privacy & "<br>"
%>
</body>