I am getting an error that I never got before on a CDO script
that I have use in the past before...can you help out please can't
seem to figure this one out. I am using DW8, VBScript and ASP.
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<%
Dim myMail, myBody
myBody = "Full Name: " & request.form("full_name") &
vbcrlf & "Email: " & request.form("email") & vbcrlf
& "Phone Number: " & request.form("phone_number") &
vbcrlf & "Contact Type: " & request.form("contact_type")
& vbcrlf & "Question/Comment: " &
request.form("question_comments")
Set myMail = Server.CreateObject("CDONTS.NewMail")
myMail.From = request.form("email")
myMail.To = "brewers@bigfootdesigns.com"
myMail.cc = ""
myMail.Subject = "MRP Arenacross Question & Comments"
myMail.Body = myBody
myMail.Send
set myMail = nothing
Response.Redirect("contact_thanks.asp")
%>
Here is the error message that I am getting
Microsoft VBScript compilation error '800a0408'
Invalid character
/mrp/html/contact_mrp_processor.asp, line 9
myMail.To = brewers@bigfootdesigns.com
-----------------------------^
Here is the URL
http://bigfootdesigns.com/mrp/html/contact_mrp.asp
thanks
B