Allora l'intero file asp è ora strutturato cosi:

<%

nome=request("nome")
commenti=request("commenti")
email=request("email")


msg = msg & "

<font size=3 face=Verdana>Modulo </font></p>"
msg = msg & "<font size=2 face=Verdana>Data : " & now() & "</font>
"
msg = msg & "<font size=2 face=Verdana>Nome: " & nome & "</font>
"
msg = msg & "<font size=2 face=Verdana>Email: " & email & "</font>
"
msg = msg & "<font size=2 face=Verdana>Commenti: " & commenti & "</font>
"


Set objMail = Server.CreateObject("CDONTS.NewMail")
objmail.From = Request.Form("email")
objmail.To = "info@dynamicstudios.it"
objmail.Subject = "Richiesta Informazioni"
objmail.Body = "Utente = " & Request.Form("nome") & vbCrLf & "commenti = " & Request.Form("commenti")
objmail.BodyFormat = 0
objmail.mailFormat = 0
objMail.Send
Set objMail = Nothing


response.redirect "grazie.htm"
%>


E' giusto? per quanto riguarda il bottone ho copiato pari pari quello che mi hai scritto tu............dovevo cambiare qualcosa?
Continua a non funzionare......lo provi anche tu nel sito?
Un altra cosa mi rimane cio che digito anche quando cambio pagina.
E poi un ultimo aiutino che comando metto nel pulsante reset?

saluti e grazie mille Alek


p.s. non è che aruba da problemi con il componente del server che fa funzionare questo...Set objMail = Server.CreateObject("CDONTS.NewMail")????