Buongiorno a tutti!!!
Ho un problema con un form creato in flash che interagisce con una pagina ASP!!! Di ASP non ne capisco nulla, ho semplicemente personalizzato un documento già esistente e tutto funzionava, ma ora non mi funziona +!!!

ecco il codice:

<%@Language=VBScript%>
<%option explicit%>
<%dim OggettoMail, strBody
set OggettoMail = Server.CreateObject("CDO.Message")
StrBody = "<HTML><HEAD><TITLE>EMAIL</TITLE></HEAD><BODY bgcolor='#e1e1e1'>"
StrBody = StrBody + "Questi sono i dati inviati dal form del sito:
"
StrBody = StrBody + "nome: <FONT COLOR=RED>" & Request.Form("nome") & "</FONT>
"
StrBody = StrBody + "cognome: <FONT COLOR=RED>" & Request.Form("cognome") & "</FONT>
"
StrBody = StrBody + "citta: <FONT COLOR=RED>" & Request.Form("citta") & "</FONT>
"
StrBody = StrBody + "indirizzo: <FONT COLOR=RED>" & Request.Form("indirizzo") & "</FONT>
"
StrBody = StrBody + "telefono: <FONT COLOR=RED>" & Request.Form("telefono") & "</FONT>
"
StrBody = StrBody + "mail: <FONT COLOR=RED>" & Request.Form("mail") & "</FONT>
"
StrBody = StrBody + "preventivo: <FONT COLOR=RED>" & Request.Form("preventivo") & "</FONT>
"
StrBody = StrBody + "</BODY></HTML>"
OggettoMail.From = Request.Form("mail")
OggettoMail.To = "xxxxx@xx.xx"
OggettoMail.Subject = "prova dal sito"
OggettoMail.BodyFormat=0
OggettoMail.MailFormat=0
OggettoMail.Body = strBody
OggettoMail.Send
set OggettoMail = Nothing%>

Mi dite come posso risolvere il problema?
Grazie!
Ciao!