ASP Question

  • Thread starter Thread starter com.object
  • Start date Start date
C

com.object

Greetings,

Is there a way to send form data and variable data to an email address in
ASP from a webpage?

Thanks.
 
There is a way to do almost anything you can imagine in ASP from a web page.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
-----Original Message-----
Greetings,
Howdy.

Is there a way to send form data and variable data to
an email address in ASP from a webpage?

Yes. Basically, the ASP code loads an object, sets
properties for the sender, recipient, subject, body, and
so forth, and then calls the object's Send method.

Many such objects are available. Chances are, your host
has installed one or more of them for use at no charge.
Check the host's support pages for more detail.

Microsoft provides two such objects:

CDONTS.NewMail - which appeared in NT 4.0
CDO.Message - which appeared in Windows 2000

You can find more information about either object by
browsing http://msdn.microsoft.com/search and searching
for the object name.

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





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


Kevin Spencer said:
There is a way to do almost anything you can imagine in ASP from a web page.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
You will have to contact your host to see which ASP mail component they
support, and then review the documentation for that mail component to see
how to write the code to do what you want.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Back
Top