Here's the Basic code for using CDO for emailing on an NT / IIS server. You must include the first section to instantiate the object, and the rest are the standard email sections.
Form to Mail Using CDO ASP / Emailing
We will use CDO instead of CDONTS. CDO comes within windows XP and windows 2000/3 and has more control over mailing system. Following asp source contains a simple webform and client side validation that controls unvalid characters. Web form uses CDO to deliver form results to your email account.
Using ASP for Form Handling: Part 4 - Filling the Gaps ASP / Web Forms
This article covers a number of miscellaneous topics include: handling radio buttons and check boxes, emailing attachments with CDONTS, sending HTML in an email message, and some ways of using the data stored in the registration database.
Professional Contact Form ASP / Web Forms
Professional Contact Form a custom form to mail script to use in any web site. Your clients can send their messages to you filling only a simple form.
Displaying Records Using Stored procedure ASP / Database Integration
We will get results form a table using stored procedure. Stored procedures work faster and increase the performance. Stored procedures stored at SQL servers and we can call them in an ASP file.
Free User Registration Form ASP / Web Forms
This script lest you to build a registration form for your clients. A visitor can create a username and password filling this form. All usernames and passwords stored in a MS-Access database.
Create Excel from Form Input ASP / Excel and ASP
ASP form input can be transformed into most any type of format that you'd like to see it in. Typically, most form input either gets delivered to a database, like Access or SQL server or the output is sent to an email address or some other application.
Search Within Search Results ASP / Database Integration
Want to add value to your current search? Allow your users to search from within search results. As databases grow the necessity for the user to continually narrow a search to the item that they truly want will grow also.
Displaying All of the Form Variables ASP / General Development
This short tutorial describes a little function that is useful in debugging your ASP pages. This function, FormDataDump(), outputs all of the form variables being passed into a page. Various options for this function allow the developer to view the values in a 'debugger-style' mode, or in a 'quiet-mode,' in which case the form variable output is hidden from the end user.
Adding Form Content into Database ASP / Web Forms
In this article we will create a simple HTML Form and an ASP page. Any data which is entered by the user in that HTML Form will be received by the ASP action page and will enter that data into the Access database.
Send an email from ASP using CDONTS/Outlook ASP / Emailing
There are several ways to send an email from VBS (ASP, WSH, IE-HTA, ...) or from VBA (Word, Excel). This page contains sample code to send simple email message for CDO, CDONTS and Outlook objects.
Building a Registration Database ASP / Cookies and Sessions
In this part 3 of "Using ASP for Form Handling", you will be shows how to put the form data gathered into a database. Shows how to develop a working registration system, set up the database and make it accessible via the web.
Professional Contact Form PART II ASP / Web Forms
Now in this second part of our script, we will add ASP coding. Our script can check all fields of our form. Our control function searches !#$%^&*()=+{}[]|\\;:/?>,<' characters. If validation function finds one of this character, script returns an error. You may modify this forbidden characters.