D
David Cho
My code below gives me an error message that says "Error loading type
library/DLL error"
I've looked around and some postings state that my ISP needs to have "CDO
service" running. Why isn't just using a STMP server enough? And there
seem to be some third party controls that I need to buy in order to have my
ASP.NET page send emails.
Could somebody post a simple solution that does not involve a third party
product? If this "CDO service" is the only option, could you post a simple
tutorial on how to set that up?
My development enviroment is XP, but the production server is 2000.
//my code below
MailMessage msg = new MailMessage();
msg.To = "(e-mail address removed)";
msg.Subject = "test";
SmtpMail.SmtpServer = "smtp-server.socal.rr.com";
SmtpMail.Send(msg);
library/DLL error"
I've looked around and some postings state that my ISP needs to have "CDO
service" running. Why isn't just using a STMP server enough? And there
seem to be some third party controls that I need to buy in order to have my
ASP.NET page send emails.
Could somebody post a simple solution that does not involve a third party
product? If this "CDO service" is the only option, could you post a simple
tutorial on how to set that up?
My development enviroment is XP, but the production server is 2000.
//my code below
MailMessage msg = new MailMessage();
msg.To = "(e-mail address removed)";
msg.Subject = "test";
SmtpMail.SmtpServer = "smtp-server.socal.rr.com";
SmtpMail.Send(msg);