|
|
|
|
|
| | |
| |
Active Server Pages ASP control controls class classes module script Scripts applet CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
|
|
Subject: |
The CDO form mail does not work. |
|
From: |
Sudhi K. |
|
Date: |
8/14/2000 7:36:03 PM |
|
IP: |
63.15.153.207 |
Hi
I created the CDO form mail. I got error messages:
Microsoft VBScript runtime error 800a01ad
ActiveX component cant create object
/form.asp, line 5
Here is my code
<%
SUB sendMail( fromWho, toWho, Subject, Body )
DIM myMail
SET myMail = Server.CreateObject("CDONTS.Newmail")
myMail.From = fromWho
myMail.To = toWho
myMail.Subject = Subject
myMail.Body = Body
myMail.Send
SET myMail = Nothing
END SUB
%>
Line 5 is "SET myMail = Server.CreateObject"
What does this error message mean? How can I make my form work?
Please help me to make my form work.
Thanks in advance |
Follow Up - Re: The CDO form mail does not work. - Pieter 8/16/2000 7:14:07 AM
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|