|
Technical Interview Questions
Visual Basic Interview Question
.NET Web Interview Questions
.NET
Interview Questions
C#
Interview Questions
.........More
Source Codes
Asp .NET Source Codes
Asp VB Script Source Codes
.........More
Soft Skills
Communication Skills
Leadership Skills
.........More
|
|
Asp/VB Script Source Codes
Inbox and Outbox
Manipulation in ASP
<%
dim objMail
set objMail = Server.CreateObject("CDONTS.NewMail")
%>
CDONTS.NewMail has easy to use properties and methods. These include ".TO,"
".From," ".CC," ".BCC," ".Subject," and ".Body." Let's look at some code:
<%
objMail.To = "chris@hotmail.com"
objMail.From = "user@yahoo.com"
objMail.cc = "me@mydomain.com"
objMail.bcc = "me_bcc@mydomain.com"
objMail.Subject = "This is subject line"
objMail.Body = "Here is body of email"
objMail.Send
%>
<<<----- Return to
Asp/VB Script Source
Code Questions Page.
Have a Question ?
post your questions here. It
will be answered as soon as possible.
Check
Microsoft .Net Interview Questions
for more Microsoft
.Net Interview Questions with Answers.
Check
.Net Database Interview
Questions for more .Net Database Interview Questions with answers
Check
Job Interview Questions
for more Interview Questions with Answers
|