P
Paul M
I have given up on trying to send an email as well as adding to the
database . but I have come up with an idea for now. I will add the following
code to the confirmation page so it will send me an email when an entry has
been added to the database.
<%
Dim myCDONTSMail
Dim strFrom
Dim strTo
Dim strSubject
strFrom = "(e-mail address removed)"
strTo = "(e-mail address removed)"
strSubject = "New entry"
Set myCDONTSMail = CreateObject("CDONTS.NewMail")
myCDONTSMail.Send strFrom,strTo,strSubject
Set myCDONTSMail = Nothing
%>
So that people don't find the page from search engines how can I make it so
nothing will log this page ie search engines search bots etc
Thanks
Paul M
database . but I have come up with an idea for now. I will add the following
code to the confirmation page so it will send me an email when an entry has
been added to the database.
<%
Dim myCDONTSMail
Dim strFrom
Dim strTo
Dim strSubject
strFrom = "(e-mail address removed)"
strTo = "(e-mail address removed)"
strSubject = "New entry"
Set myCDONTSMail = CreateObject("CDONTS.NewMail")
myCDONTSMail.Send strFrom,strTo,strSubject
Set myCDONTSMail = Nothing
%>
So that people don't find the page from search engines how can I make it so
nothing will log this page ie search engines search bots etc
Thanks
Paul M