M
Mike Mueller
With the recent spat of guestbook spamming, I am redoing my
GB. I am not using the FP2000 version, I am using an access
db & a drw. The version I am developing will take the info
from the form and create an html email containg a from
pre-populated with the info from the submitted form. I have
run into a few issues and I am on my knees to ask for help.
The form I receive in the email only contains the first word
of what was entered on the forms. Code snippets from the asp
page which sends the email via CDO
dim strTime, strName
dim strHBody
strTime = Now ()
strName = Request.Form("Name")
strHBody = "<html><body>"
strHBody = strHBody & "<form method=""POST""
action=""http://www.domain.com/Entry.asp"">"
strHBody = strHBody & "<p align=""center"">GB beta entry
form was submitted. If these are OK "
strHBody = strHBody & "click accept<br>"
strHBody = strHBody & "<input type=""submit""
value=""Accept"" name=""Submit""></p>"
strHBody = strHBody & "<td>Name</td>"
strHBody = strHBody & "<td><input type=""text""
name=""Name"" size=""50"" value=" & strName &"></td>"
strHBody = strHBody & "<td>Time submitted</td>"
strHBody = strHBody & "<td><input type=""text""
name=""TimeStamp"" size=""50"" value=" & strTime & "></td>"
GB. I am not using the FP2000 version, I am using an access
db & a drw. The version I am developing will take the info
from the form and create an html email containg a from
pre-populated with the info from the submitted form. I have
run into a few issues and I am on my knees to ask for help.
The form I receive in the email only contains the first word
of what was entered on the forms. Code snippets from the asp
page which sends the email via CDO
dim strTime, strName
dim strHBody
strTime = Now ()
strName = Request.Form("Name")
strHBody = "<html><body>"
strHBody = strHBody & "<form method=""POST""
action=""http://www.domain.com/Entry.asp"">"
strHBody = strHBody & "<p align=""center"">GB beta entry
form was submitted. If these are OK "
strHBody = strHBody & "click accept<br>"
strHBody = strHBody & "<input type=""submit""
value=""Accept"" name=""Submit""></p>"
strHBody = strHBody & "<td>Name</td>"
strHBody = strHBody & "<td><input type=""text""
name=""Name"" size=""50"" value=" & strName &"></td>"
strHBody = strHBody & "<td>Time submitted</td>"
strHBody = strHBody & "<td><input type=""text""
name=""TimeStamp"" size=""50"" value=" & strTime & "></td>"