Click here to Skip to main content
Click here to Skip to main content

SMTP Mail Delivery

By , 28 Mar 2002
 

Introduction

Handling email is a very important part of every active website. Automating mail delivery could be extremely useful and could have many uses such as:

  • Online order verification.
  • Creating a mailing list to update customers of recent news/sales.
  • Responding to a software download.
  • And the list goes on...

The reasons may vary, but the need is the same: your site should be able to send email automatically. And this is exactly what you're going to learn in this article - using the CDONTS library to send email.

Important notice: the CDONTS library is only applicable to NT users, it will not work for PWS users.

The Importance of Automated Mail Response

Just a moment before we delve into the techy stuff, I'd like to emphasize the importance of an automated mail response. When a user gets an email notification from your site he gets the feeling that someone has answered him, he has someone to talk to, this isn't yet another dead-end sale. The response to the user's action gives him a sense of security. Automated mail response is an important tool - use it wisely.

Let the learning begin!

The SMTP Service

SMTP - Simple Mail Transfer Protocol - is a Service on the NT OS. It is installed with the IIS (if you choose it from the list of components).

How can you know whether it is installed on your server or not? Simple. Call it and see if you get an answer! Choose Start > Run from the Start menu and type telnet [ServerName] 25.

Check for the STMP service

Replace ServerName with your server name of course. 25 is the port number SMTP listens to.

If it's installed you should get an answer similar to this:

>220-MyServer Microsoft SMTP MAIL ready at
Sun, 24 March 2002 18:12:21 - 0500 Version 5.5.1877.977.9
220 WSMTP Spoken here

If not, then you probably don't have SMTP installed on your server. To install it run the NT Option Pack installation, and choose the appropriate option.

CDONTS

The CDONTS library - Collaboration Data Objects for NT Server, which also comes with the NT Option Pack, provides very useful objects for delivering/receiving mail through SMTP. Note that there is another library called CDO, which is much richer and provides a lot more options. It comes with the Microsoft Exchange Server. The CDONTS library is simpler to use, and with it you can send mail within a few lines of code.

Lets get on with it already!

The NewMail Object

The CDONTS library contains a number of objects, but we will focus on the simplest object: NewMail. It is used for quick and simple mail delivery.

Lets quickly review the NewMail object properties:

Property Explanation
Bcc Blind Carbon Copy (additional delivery address)
Body The message body
BodyFormat Message format: 0-HTML 1-Text
Cc Carbon Copy (additional delivery address)
ContentBase Base path for files in the message
ContentLocation Relative base path for files in the message
From Sender address
Importance Priority: 0 to 3
MailFormat Delivery method: 0-Mime 1-Text
Subject Message subject
To Receiver's address
Value Additional message headline
Version CDONTS version

There are 3 options to add receivers' addresses:

  1. To - the simplest way, this is the primary receiver address.
  2. CC - additional receiver (the receiver can see who else received the message).
  3. BCC - additional receiver (the receiver can't see who else received the message, it will look as if it was sent only to him).

Now lets review the NewMail object methods:

Method Explanation
AttachFile Attach a file to the message
AttachURL Attach URL to the message
Send Send the message
SetLocaleIDs Set a Code Page for the message

Onward!

Sending the Mail!

Ok, we've come this far now lets send a message!

Create myMail - a NewMail object:

Set myMail = Server.CreateObject("CDONTS.NewMail")

Now set the message properties: receiver's address, sender's address, message content, subject and so on.

myMail.To = "bill_g@yahoo.com"
myMail.Body = "Hey Bill, how come you're using yahoo mail service?"
myMail.From = "faq@your_company.com"
myMail.Subject = "Testing"

Set the message format to MIME (Multipurpose Internet Mail Extension):

myMail.BodyFormat=0

Add a file attachment:

Call myMail.AttachFile("\\server\bill_photos\bill_wife_nude.jpg", "BILL_WIFE_NUDE.JPG")

Send it already!

myMail.Send

Now don't forget to clear the object...

Set myMail=nothing

Cut! And we're done.

Summary

So, what have we done so far?

  • We discussed the importance of automated mail response.
  • We got the SMTP Service up and running.
  • We reviewed the NewMail object from the CDONTS library.
  • And we sent out a simple message, though I assume you'll improve the code to suit your needs.

Wrap it up guys.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

ISIS55
Web Developer Self-Employed
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralCDO for HebrewmemberPhipps Xue9 Apr '07 - 15:35 
Hi there,
 
Do you know whether this CDO support Hebrew and right-to-left messaging?
 
Regards,
Eyal
Questionhaving problem with sending email to mail.yahoo.com using CDONTS/CDOmemberPINKS253 Apr '06 - 1:26 
Hi everybody,
I'm having a lot of problems in sending email to any other mail server except my own mail server. I've tried using CDONTS and CDO both but with same result. Sometimes it's showing the mail has been successfully send but actually it's not sent and sometimes it's showing error. Can anybody help me in this regard?? It will be very very much helpful to me... thanks a lot in advance.
 
Pinaki Karuri
AnswerRe: having problem with sending email to mail.yahoo.com using CDONTS/CDOmemberpiggalee12 Aug '06 - 20:56 
Hello Pinaki
I have a similar intermittent problem - I have a mailing list implemented with ASP and CDONTS, but every now and then some part of the list is undelivered. I suspect it is due to relaying issues and the settings on hte ISP's mailservers - the mail is interpreted as spam.... did you find an answer to your issues?
Rgds

Generalcdonts mailmembermimisanka21 Sep '05 - 19:15 
hi everyone,
iam getting a problem invalid class string when iam giving a code
dim obj=server.createobject("cdonts.newmail")
plz help me out
Confused | :confused:
GeneralRe: cdonts mailmemberyjbnew9 May '06 - 15:07 
dim obj
set obj=server.createobject("cdonts.newmail")
---
try it
GeneralSend Email ProblemmemberEWE WEI WEN15 Sep '05 - 16:57 
Laugh | :laugh: Laugh | :laugh: Laugh | :laugh: Laugh | :laugh: Hi all,
 
I encountered this problem and I wish that anyone can provide your valuable suggestion or opinion. I really appreciate your help.
 
I am using Microsoft Windows 2000 server and IIS6.0, and my source code is
 
<%
Set myMail = Server.CreateObject("CDONTS.NewMail")
myMail.To = "ewe_weiwen@yahoo.com"
myMail.Body = "Hey Bill, how come you're using yahoo mail service?"
myMail.From = "wei.wen.ewe.intel.com"
myMail.Subject = "Testing"
myMail.BodyFormat=0
 
myMail.Send
Set myMail=nothing
%>
 
and I encountered this ERROR Message -
 
Error Type:
Microsoft VBScript runtime (0x800A0046)
Permission denied
/mail/mail.asp, line 9
 

Thanks everyone.
Have a nice day
 
Regards
EWE WEI WEN
Generalsending email through SMTPmemberaa_mm28 Aug '05 - 21:10 
I want to send email using SMTP protocol in vc++.Can any one help me out.
thanks.
GeneralCDONT SMTP RELAYsussAnonymous22 Jun '04 - 20:46 
Hi All:
Have built a simple asp page using cdonts mail component to send out email using a specific smtp.
 
Just wonder if the smtp is a close relay, will it be able to use this smtp to send out email.
 
I have tested to those SMTPs ( those are close relay), but I do not need login id and password to authenticate for permission. I am able to send out email using those SMTPs...
 
In this case, anyone who use the nslookup can check for smtp and from there, we can use their smtp to send emails...or even junks..or spam...
 

Please advice.
 
Thanks
GeneralUsing CDONTS But not getting any emailsussAnonymous28 Apr '04 - 19:11 
i Have used this code but not getting any luck.. can anyone tell me whats wrong with this code...
Dim objCDO
 

Set objCDO = Server.CreateObject("CDONTS.NewMail")
objCDO.From = "far_af@colpal.com"
objCDO.To = "far_af@colpal.com"
objCDO.Subject = "Attn: Scott, we need you!!"
objCDO.Body = txtSubject
 
objCDO.Send
GeneralBody part is not accepted...sussOmar Díaz15 Apr '04 - 6:32 
Hi.. i have this problem...
 
The mail body is not accepted as text coz is too long and I have no idea how to make it work.. if anyone can help me with this...
 
Here's the code:
 
Set mailobj = Server.CreateObject("CDONTS.NewMail")
 
cuerpo = "<table width=100% border=0 cellspacing=0 cellpadding=0>
               <tr bgcolor=#FFFFFF>
                  <td colspan=3>
                     <div align=center><font color=#003366 size=4 face=Arial><strong>Oficina
                        General de Planificaci&oacute;n</strong></font></div></td>
               </tr>
               <tr>
                  <td width=11%>&nbsp;</td>
                  <td width=76%>&nbsp;</td>
                  <td width=13%>&nbsp;</td>
               </tr>
               <tr>
                  <td colspan=3><div align=center><font color=#FFFFFF size=3 face=Arial><strong>Invitaci&oacute;n</strong></font></div></td>
               </tr>
               <tr>
                  <td>&nbsp;</td>
                  <td>&nbsp;</td>
                  <td>&nbsp;</td>
               </tr>
               <tr>
                  <td><font color=#FFFFFF size=2 face=Arial>&nbsp;</font></td>
                  <td><p><font color=#FFFFFF size=2 face=Arial, Helvetica, sans-serif>Saludos " & Response.Write(hisnombre) & ", </font></p>
                     <p><font color=#FFFFFF size=2 face=Arial>Tu
                        amigo " & Response.Write(menombre) & " ha recomendado que ingreses a <a href=www.unmsm.edu.pe/ogpl style=color:#ffffff;text-decoration:none><strong>www.unmsm.edu.pe/ogpl</strong></a>
                        donde encontrar&aacute;s informaci&oacute;n sobre la Oficina General
                        de Planificaci&oacute;n de la Universidad Nacional Mayor de San
                        Marcos</font></p></td>
                  <td><font color=#FFFFFF size=2 face=Arial>&nbsp;</font></td>
               </tr>
               <tr>
                  <td><font color=#FFFFFF size=2 face=Arial>&nbsp;</font></td>
                  <td><font color=#FFFFFF size=2 face=Arial>&nbsp;</font></td>
                  <td><font color=#FFFFFF size=2 face=Arial>&nbsp;</font></td>
               </tr>
               <tr>
                  <td height=19>&nbsp;</td>
                  <td><font color=#FFFFFF size=2 face=Arial>Esperamos
                     que la pagina sea de tu agrado y de utilidad</font></td>
                  <td>&nbsp;</td>
               </tr>
               <tr>
                  <td height=19>&nbsp;</td>
                  <td>&nbsp;</td>
                  <td>&nbsp;</td>
               </tr>
               <tr>
                  <td>&nbsp;</td>
                  <td><p><font color=#FFFFFF size=2 face=Arial><strong>Atte.</strong></font></p>
                     <p><strong><font color=#FFFFFF size=2 face=Arial>Direcci&oacute;n
                        de la Oficina General de Planificaci&oacute;n</font></strong></p></td>
                  <td>&nbsp;</td>
               </tr>
            </table>"
    
      mailobj.mailFormat = 0
      mailobj.bodyFormat = 0
    
      mailobj.from = memail
      mailobj.to = hismail
      mailobj.subject = "Invitacion"
      mailobj.body = cuerpo
      mailobj.send
GeneralRe: Body part is not accepted...susscruzagr33 Jan '05 - 7:59 
you must concatenate a string to make your body message..
something like that
 
cuerpo= " this is mi firts line"
cuerpo= cuerpo & "this is my second line"
cuerpo= cuerpo & "this is my ..........."
 
and then you will be able to send the email
 

GeneralSMTP Setupmemberjdj Locasta6 Jan '04 - 6:25 
Isaac,
 
Best article!! I am using CDONTS object it workes fine. Only one problem I can send and receive mail to those people who have .gov extention ex: me@codeproject.gov any idea why this is happening. When I try to send email to .com, .edu, .org or any other extention it bounce backa and give me error message:Enhanced Mail System Status Code (RFC1893): 5.0.0
 
Please response soon
 
Thanx in Advance,
 
JDJ
GeneralCDO for windows 2003 serverssusspsepesi4 Nov '03 - 16:46 
Confused | :confused: Does anyone know the code for cdonts for the email object for win2003 servers?
Not having sucess with the old code used on nt server on 2003 server.
Anybody dealt with this and get it to work?

GeneralRe: CDO for windows 2003 serversmembererikalee9 Nov '03 - 20:02 
CDONTS do not work on win2003 server. You need to use the CDO component. You can go to this website to learn more about CDO. It has a complete guide on how to send mail by a form and more about CDO and Windows 2003 Server.
 
http://www.ilopia.com/Windows2003/Tutorials.aspx?id=3
 
Hope it helps!!
GeneralRe: CDO for windows 2003 serversmemberArkadiusz R. Jagielski7 Apr '04 - 12:28 
Windows 2003 dosen't have CDONTS support. To resolve this, take the cdonts.dll file from C:\Windows\System32 folder in your Windows 2000 Operating System and copy it to the folder where your Windows 2003 System32 folder is i.e. C:\Windows\System32 (This could also be WINNT instead of WINDOWS directory). Then in command prompt type in this command:
 
Regsvr32 C:\windows\system32\cdonts.dll
 
There you go! You should now be able to send and receive email in asp using the CDONTS object.
 
Arek

 
Arek
GeneralCDO for windows 2003 serverssusspsepesi4 Nov '03 - 16:44 
Confused | :confused: Does anyone know the code for cdonts for the email object for win2003 servers?
Not having sucess with the old code used on nt server on 2003 server.
Anybody deal with this and get it to work?

GeneralCDONTS giving warningssussMonte Kottman22 Oct '03 - 5:04 
I used the script, and it didn't send it and the event viewer shows the following warning:
 
Message delivery to the remote domain 'mydomain.com' failed for the following reason: Unable to deliver the message because the destination address was misconfigured as a mail loop.
 
Frown | :(
 
Any Ideas?
 

GeneralPlz Help me, how ca n i do the same in VC++memberAzhar Javaid22 Aug '03 - 1:43 
Hello Every one,
i think CDONTS is the most simplest option to send emails.
Here u mentioned the way to send email from ASP but how can i do the same in VC++
 
Thanx Alot
GeneralRe: Plz Help me, how ca n i do the same in VC++memberdharani21 Sep '03 - 19:58 
hello azhar
i am also searching to find how i can do the same in VC++ ..had u fouud it please help me ..dharani
GeneralRe: Plz Help me, how ca n i do the same in VC++memberDimitris Vassiliades17 Mar '04 - 3:51 
Check the message by alex1977 on 5:47 1 Apr '03Smile | :)
 

...Plug & Pray... Dead | X|
Generalnot a cdont but a SMTPsvg.Mailermemberflashermx16 Aug '03 - 16:42 
I am not using the cdont to creat the server object I'm using the SMTPsvg.Mailer. What is this and what is my library instead of
 
Set myMail = Server.CreateObject("CDONTS.NewMail")
 
I use
 
Set Mailer = Server.CreateObject("SMTPsvg.Mailer")
 
What's the differenceBig Grin | :-D
GeneralSample for AttachmentmemberPinakin7 Aug '03 - 17:36 
Hi
 
I am a scratch beginer
 
Can you tell me how can i find my Server type(name)
and also help me with a sample coad for attaching a file to teh mail
 
eagerly waiting for a reply
QuestionHow CDONTS work in VC++memberRennyAshay6 Aug '03 - 18:36 
Cry | :(( I have to send mails in VC 6. But the problem is if using smart pointer then using CoCreateInstance() what should be the ID and interface idd. Please help me.
Questionhow make it work with XPmembermoh41010 Jun '03 - 6:02 
the article is great
but how to make it work with Xp pro
 

plz,i want it
AnswerRe: how make it work with XPmembermarriola6 Aug '03 - 7:01 
Hi, maybe you need change IIS Settings at SMTP Relay Restrictions to grant access relay the localhost server (your pc). Open de IIS Console Manager, then open Default SMTP Properties Form, and then in the tab 'Access' click button 'Relay...', at the end, select de option 'Only de list below' and add your localhost ip (127.0.0.1) to Computers list to grant access relay.
GeneralCDONTS not sending emailmembermeghana_parikh@hotmail.com8 May '03 - 13:31 
I am on Win 2K with SP3, IIS 5.0. My ASP page which creates
CDONTS.NewMail object to send email is not sending email. It was
working fine till couple days back, somehow it has stop working. When
I try to send an email using that it doesn't give me any error
message, no entry in event log or in SMTPSRC log file, doesn't go to
bad mail or any other folder under MailRoot folder of IIS/Inetpub.
 
Tried couple things like setting permissions on IIS,MachineKeys folder
and re-registering cdonts.dll file, re-installed IIS. Frontpage email
forms work fine. But still not getting any luck with asp email page.
 
Any ideas are welcome.
MP

GeneralRe: CDONTS not sending emailsussAnonymous4 Aug '04 - 23:39 
I also having the same problem. Have you solved the problem yet? Anyone got any idea why is it like that? Any solutions?
Generalsending e-mail whith cdontssussAnonymous28 Apr '03 - 6:31 
hi,
i send an e-mail whith cdonts but i don't receive Frown | :(

GeneralRe: sending e-mail whith cdontsmemberArkadiusz R. Jagielski7 Apr '04 - 12:26 
what OS are you using? Check my response under email with ASP if your using windows XP
 
arek
GeneralCDONTSsussalex197731 Mar '03 - 23:47 
Does anybody knows how to create a NEWMAIL object, but instead of using Vbasic, using C++?
Can provide me a simple example?
GeneralRe: CDONTSmemberDimitris Vassiliades1 May '03 - 8:34 
I don't know if you already have found an example but in case you didn't here is a C++ equivalent:
 
First you need to import the dll (or tlb) in your project.
 
#import "D:\WINNT\System32\cdonts.dll" //or whereever the dll exists.
 
then initialize ole (I suppose you already did), and write some code like this one:

CDONTS::INewMailPtr myMail;
myMail.CreateInstance("CDONTS.NewMail");
myMail->To = "bill_g@yahoo.com";
myMail->Body = "Hey bill, how come you're using yahoo mail service?";
myMail->From = "nobody@just_testing.com";
myMail->Subject = "Testing";
myMail->BodyFormat = 0;
myMail->AttachFile("D:\\TEMP\\LINKS.TXT", "LINKS.TXT");
myMail->Send();

 
Maybe it helps.;)
Generaldon't want incoming e-mailssussBill coulter20 Feb '03 - 3:08 
It appears in setting up SMTP that you can set the limit on the number of incoming and outgoing connections. If I set the limit on the number of incoming connections to 0 will that stop all messages from coming back to me. I am just wanting to use this to notify users when a problem occurs that they need to know about.
Generalemail with ASPsussAreen Ruman31 Jan '03 - 2:57 
I have Windows XP, I don;t know if I Have CDONTS,
When I run the code I have a blank page and I don't receive the email, and I don't get errors.
Cooment, and tell me how to define the Email Servers (SMTP, and POP3)
 
Eng. Areen Ruman
GeneralRe: email with ASPmembersm808216 Jun '03 - 12:11 
I dont know
 
sorry
GeneralRe: email with ASPmemberArkadiusz R. Jagielski7 Apr '04 - 12:24 
Smile | :) Smile | :) Windows XP dosen't have CDONTS support. To resolve this, take the cdonts.dll file from C:\Windows\System32 folder in your Windows 2000 Operating System and copy it to the folder where your Windows XP System32 folder is i.e. C:\Windows\System32 (This could also be WINNT instead of WINDOWS directory). Then in command prompt type in this command:
 
Regsvr32 C:\windows\system32\cdonts.dll
 
There you go! You should now be able to send and receive email in asp using the CDONTS object.
 
Arek
GeneralRe: email with ASPsussAnonymous11 Jul '04 - 19:39 
if u have visual interdev which comes with visual studio 6.0,
create a new asp page in it and write the following code:
SET myMail=Server.CreateObject("CDONTS.Newmail")
myMail.
 
u should be able to see a list of methods and properties when u write "myMail." if u do........u have cdonts on ur pc......else u'll have to download cdonts.dll from the net(it's free).
consider using CDO.Message instead of CDONTS..........i find it much better.
all da best!
Generaltest sent emailmemberyot8 Jan '03 - 5:13 
Smile | :) test
GeneralGetting dynamic values from a databasesussjimmyeprince31 Dec '02 - 11:09 
I need to get multiple recipient email addresses from an Access database dynamically and automatically send the email address. Can you describe how to do this?
Generalerror in open attachementssusslogu23 Sep '02 - 1:34 
hi guys

i am sending mails with attachments using CDONTS. the reciever side while open the attachemets it is showinng junk chatacters.
 

logu
GeneralCDO for Windows 2000sussAnonymous20 Sep '02 - 6:27 
How I can see if an user can send mail with CDO for Windows 2000 using a server befor send the message.
GeneralReceiving e-mailssussA R10 Sep '02 - 8:55 
I am running MS SMTP server under XP Pro, and I am wondering how I can automate receiving the emails. As it stands now, the SMTP server delivers the email messages and drops them into its Drop folder in mailroot. I wonder if there is some sort of an application in existence that would allow me to process those emails with an ASP script as they arrive (I am trying to write a discussion list where users can post to the mailing list). Thanks !
GeneralRe: Receiving e-mailsmemberRyan Binns27 Mar '03 - 18:49 
Dim iDropDir
Dim iMsgs
Dim iMsg
 
Set iDropDir = CreateObject("CDO.DropDirectory")
Set iMsgs = iDropDir.GetMessages("c:\Inetpub\mailroot\Drop")
If iMsgs.Count > 0 Then
    ' There are messages.
    ' Access them using iMsgs(1), iMsgs(2) etc...
End If
 
Hope this helps. See the documentation on CDO for Windows 2000 for more information
 
Ryan
 
He who laughs last thinks too slowly.
GeneralRe: Receiving e-mailssussAnonymous29 Jan '04 - 8:28 
And receive attachments?
 
Please mail to modmax_m@hotmail.com
GeneralRe: Receiving e-mailsmemberRyan Binns30 Jan '04 - 1:11 
I haven't done any CDO since I wrote that message, so sorry, but I can't help any further.
 
Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"

GeneralRe: Receiving e-mailssussAnonymous12 Aug '03 - 21:40 
test
GeneralRe: Receiving e-mailssussshwetketu6 Feb '04 - 9:06 
dear friend,
first create a session using server.createobject...then use logonsmtp method of that object...after thatcreat a object of session object using inbox method.....after that creat object of inbox using messages method then use
set mymessage=mymessages.item(k)
response.write mymessage.body
 

it'll print body of kth mail

Generalrunning on windows2000 proffisional and problem on windows 2000 serversussDodi--ASP--Dodi14 Jul '02 - 22:04 
i did all steps to let my web application sends mail using a local server in my pc"i'm using windows 2000 proffisional so i i have to install ISS 5.0 , make sure that STMP service running and CDONTS.dll found under c:/winnt/system32",but when i copy paste the code for running on the windows 2000 sever it didn't send any mail although i make sure that SMTP was running good and CDONTS.dll was found...so what could be the problem..Please confirm me Roll eyes | :rolleyes:
 
ASP is the best
GeneralRe: running on windows2000 proffisional and problem on windows 2000 servermemberotherwise19 Jul '03 - 23:25 
try using
Mymail = Server.CreateObject("CDO.Message")
instead of
Mymail = Server.CreateObject("CDONTS.NewMail")
 
I hope that helps you solve the problem...

 
Cool | :cool: OtherWise
GeneralCDONTS Not WorkingsussAnonymous13 Jul '02 - 14:47 
I have definitely got SMTP running on the server as I did the test and got the required result.
 
Below is the code I am getting and the error:
<%
Dim MyMail
Set MyMail = Server.CreateObject("CDONTS.NewMail")
MyMail.From = "justme@myaddress.com"
MyMail.To = "jennif@iafrica.com"
MyMail.Cc = ""
MyMail.Bcc = ""
MyMail.Subject = "sending email via CDONTS NewMail"
MyMail.BodyFormat = 1
MyMail.MailFormat = 0
MyMail.Importance = 2
MyMail.Body = "Sending email with CDONTS NewMail" &_
"objects is easy! Try it!"
%>
 
Error:
Error Type:
Server object, ASP 0177 (0x800401F3)
Invalid class string
 
Help!!!
GeneralRe: CDONTS Not WorkingsussAnonymous10 Jan '03 - 8:40 
Are you using Windows XP?
 
I had the same problem. I think this particular command is not compatible with the .NET framework on XP.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 29 Mar 2002
Article Copyright 2002 by ISIS55
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid