Qualcuno sa dirmi che errore è?
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/or-lab2.asp, line 40
800401f3
La pagina incriminata ha il seguente codice:
<%
testo = "[b]Contact Request from MR/MRS " & Request.Form("Nome") & "
"
testo = testo & "Address: " & Request.Form("Via") & "
"
testo = testo & Request.Form("Cap") & " - " & Request.Form("Citta") & " (" & Request.Form("Stato") & ")
"
testo = testo & "Phone: " & Request.Form("Tel") & "
"
testo = testo & "Fax: " & Request.Form("Fax") & "
"
testo = testo & "E-mail address: " & Request.Form("Email") & "
"
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.From = Request.Form("Email")
objMail.To = "info@miosito.com"
objMail.Subject = "PRIVATE LABEL CONTACT"
objMail.BodyFormat = 0
objMail.MailFormat = 0
objMail.Body = testo
objMail.Importance = 1
objMail.Send
Set objMail = nothing
%>
la linea 40 corrisponde al
Set objMail = Server.CreateObject("CDONTS.NewMail")
Grazie a tutti

Rispondi quotando