Ask a Question related to ASP.NET General, Design and Development.
-
jeff #1
Can not use 'CDO' any long?
Hi,
I don't know why, when I use MailMessage to send email I get a error "Could
not create 'CDO.Message' object". But it used to work. What I can recall is
I installed Win2K Sp4 and terminal server. The code I used to send the email
follows:
MailMessage Message = new MailMessage();
Message.BodyEncoding = System.Text.Encoding.UTF8;
Message.To = tbEmail.Text;
Message.From = "jone_123@hotmail.com";
Message.Subject = "Thanks";
Message.Body = "test";
SmtpMail.Send(Message);
And I tried to register the cdosys.dll again but get the error
"DllRegisterServer in cdosys.dll failed. Return code was: 0x800704da".
I also tried to set the mailroot folder's security to allow ASPNET user
read/write, still no luck.
Anyone can help ?
Thanks in advance
Jeff
jeff Guest
-
Question about a long session timeout (somewhat long)
I've been told by my developers to increase the asp.net session timeout to 72 hours. Being a server guy, it concerns me because of the obvious... -
how long do we have to wait already!?!
v7 came out when? 1-2 years ago?!? How long do we linux users have to wait for v9 or even v8 for that matter? For pete's sake, I know Adobe has to... -
How long
How long does it take to install 7.0 onto a server remotely? I am thinking of setting up my own box form some of my sites and I am comfortable with... -
IDS 7.3* - Long long long checkpoint !
I've noticed very long checkpoints in the online.log file. What does IDS do in a checkpoint that can take so long ? Environnement: IDS running on... -
GC Segfault [LONG]
Hello Rubyists! let me apologize first: I have no means of condensing my problem to a few lines of code. I'll explain: I'm currently building... -
Showjumper #2
Re: Can not use 'CDO' any long?
you are missing the
smtpmail.SmtpServer = "" or whatever you mail server is
"jeff" <bloodchen@hotmail.com> wrote in message
news:uYeXcaXVDHA.2164@TK2MSFTNGP10.phx.gbl..."Could> Hi,
>
> I don't know why, when I use MailMessage to send email I get a erroris> not create 'CDO.Message' object". But it used to work. What I can recall> I installed Win2K Sp4 and terminal server. The code I used to send the> follows:
>
> MailMessage Message = new MailMessage();
> Message.BodyEncoding = System.Text.Encoding.UTF8;
> Message.To = tbEmail.Text;
> Message.From = "jone_123@hotmail.com";
> Message.Subject = "Thanks";
> Message.Body = "test";
> SmtpMail.Send(Message);
>
> And I tried to register the cdosys.dll again but get the error
> "DllRegisterServer in cdosys.dll failed. Return code was: 0x800704da".
>
> I also tried to set the mailroot folder's security to allow ASPNET user
> read/write, still no luck.
>
> Anyone can help ?
>
> Thanks in advance
>
> Jeff
>
>
Showjumper Guest
-
jeff #3
Re: Can not use 'CDO' any longer?
Thanks. But set smtpmail.SmtpServer = "" or "localhost" does not help.
And the code works somedays before.
"Showjumper" <shojumper@grkjashdjkf.com> wrote in message
news:uz9yBkXVDHA.2016@TK2MSFTNGP09.phx.gbl...> you are missing the
> smtpmail.SmtpServer = "" or whatever you mail server is
>
> "jeff" <bloodchen@hotmail.com> wrote in message
> news:uYeXcaXVDHA.2164@TK2MSFTNGP10.phx.gbl...> "Could> > Hi,
> >
> > I don't know why, when I use MailMessage to send email I get a error> is> > not create 'CDO.Message' object". But it used to work. What I can recall> > I installed Win2K Sp4 and terminal server. The code I used to send the>> > follows:
> >
> > MailMessage Message = new MailMessage();
> > Message.BodyEncoding = System.Text.Encoding.UTF8;
> > Message.To = tbEmail.Text;
> > Message.From = "jone_123@hotmail.com";
> > Message.Subject = "Thanks";
> > Message.Body = "test";
> > SmtpMail.Send(Message);
> >
> > And I tried to register the cdosys.dll again but get the error
> > "DllRegisterServer in cdosys.dll failed. Return code was: 0x800704da".
> >
> > I also tried to set the mailroot folder's security to allow ASPNET user
> > read/write, still no luck.
> >
> > Anyone can help ?
> >
> > Thanks in advance
> >
> > Jeff
> >
> >
>
jeff Guest
-
Showjumper #4
Re: Can not use 'CDO' any longer?
Can you test it on another server to see if it works there? Maybe something
to do w/ SP4...
"jeff" <bloodchen@hotmail.com> wrote in message
news:%235ZBO5XVDHA.624@TK2MSFTNGP10.phx.gbl...recall> Thanks. But set smtpmail.SmtpServer = "" or "localhost" does not help.
> And the code works somedays before.
>
> "Showjumper" <shojumper@grkjashdjkf.com> wrote in message
> news:uz9yBkXVDHA.2016@TK2MSFTNGP09.phx.gbl...> > you are missing the
> > smtpmail.SmtpServer = "" or whatever you mail server is
> >
> > "jeff" <bloodchen@hotmail.com> wrote in message
> > news:uYeXcaXVDHA.2164@TK2MSFTNGP10.phx.gbl...> > "Could> > > Hi,
> > >
> > > I don't know why, when I use MailMessage to send email I get a error> > > not create 'CDO.Message' object". But it used to work. What I canuser> > is> > > I installed Win2K Sp4 and terminal server. The code I used to send the> > > follows:
> > >
> > > MailMessage Message = new MailMessage();
> > > Message.BodyEncoding = System.Text.Encoding.UTF8;
> > > Message.To = tbEmail.Text;
> > > Message.From = "jone_123@hotmail.com";
> > > Message.Subject = "Thanks";
> > > Message.Body = "test";
> > > SmtpMail.Send(Message);
> > >
> > > And I tried to register the cdosys.dll again but get the error
> > > "DllRegisterServer in cdosys.dll failed. Return code was: 0x800704da".
> > >
> > > I also tried to set the mailroot folder's security to allow ASPNET>> >> > > read/write, still no luck.
> > >
> > > Anyone can help ?
> > >
> > > Thanks in advance
> > >
> > > Jeff
> > >
> > >
> >
>
Showjumper Guest



Reply With Quote

