ASP/ASP.net

J

Jerry

Looks like its time to learn more programming. I need to get up to speed with ASP and/or ASP.net so that I can do some programming with CDO.Message on my site. I would like some tips on a good beginners book and/or sites that will get me started.
 
J

Jon Spivey

Hi Jerry,
this page should get you going with cdo.message on asp
http://www.aspfaq.com/show.asp?id=2026

It's a little different if you go the asp.net route you'd use
system.web.mail (which is actually a wrapper to cdo) code goes something
like this
Dim oMail As New MailMessage
oMail.From = from
oMail.To = to
oMail.Subject = subject
oMail.Body = message
oMail.BodyFormat = MailFormat.Html ' or text
SmtpMail.SmtpServer = "smtp.you.com" 'set to "" to use smtp service
SmtpMail.Send(oMail)

Jon
Microsoft MVP - FP

Jerry said:
Looks like its time to learn more programming. I need to get up to speed
with ASP and/or ASP.net so that I can do some programming with CDO.Message
on my site. I would like some tips on a good beginners book and/or sites
that will get me started.
 
T

Tom Gahagan

Hi Jerry.....

for asp ( 4 guys has some .net stuff too)
www.asp101.com
www.learnasp.com

www.4guysfromrolla.com

www.aspin.com

For starters.... < g >

Best to you....
Tom Gahagan
eThomaston.com

Jerry said:
Looks like its time to learn more programming. I need to get up to speed
with ASP and/or ASP.net so that I can do some programming with CDO.Message
on my site. I would like some tips on a good beginners book and/or sites
that will get me started.
 
J

Jim Buyens

-----Original Message-----
Looks like its time to learn more programming. I need
to get up to speed with ASP and/or ASP.net so that I can
do some programming with CDO.Message on my site. I
would like some tips on a good beginners book and/or
sites that will get me started.

Try this link:

Mailing Form Data
http://www.interlacken.com/winnt/tips/tipshow.aspx?tip=46

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top