andrew1234
04-01-2005, 08:21 PM
Can you please help me.. this simple form script wont insert the variavble fullname from the form
there are no error messages , it only sends and email that looks like this
Full name :
thanks
Andrew
________________________________________________________
asp script below
<%
Dim fullname
fullname = Request.Form("fullname")
Dim msgObject, Body
set msgObject = Server.CreateObject("CDONTS.NewMail")
msgObject.From = "1@me.com"
msgObject.To = "1@me.com"
msgObject.Subject = "test"
Body = Body & "Name: " & fullname & chr(13)
msgObject.Body = Body
msgObject.Send
%>
there are no error messages , it only sends and email that looks like this
Full name :
thanks
Andrew
________________________________________________________
asp script below
<%
Dim fullname
fullname = Request.Form("fullname")
Dim msgObject, Body
set msgObject = Server.CreateObject("CDONTS.NewMail")
msgObject.From = "1@me.com"
msgObject.To = "1@me.com"
msgObject.Subject = "test"
Body = Body & "Name: " & fullname & chr(13)
msgObject.Body = Body
msgObject.Send
%>