|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp是基于web的一种编程技术,可以说是cgi的一种。它可以完成以往cgi程序的所有功能,如计数器、留言簿、公告板、聊天室等等。ClickheretocopytheCodetoyourclipboard(OnlyforIEUsers)
DeclareVariables
DimCDONTSObj,MessageBody
CreatetheCDONTSobject
SetCDONTSObj=Server.CreateObject("CDONTS.NewMail")
ToAddress
CDONTSObj.To="info@scriptmate.com"
FromAddress
CDONTSObj.From="you@yoursite.com"
CCEmailAddressesseperatedbyacomma
CDONTSObj.cc="support@scriptmate.com,amit@millioncolors.com"
YourEmailMessage
MessageBody="SendingaemailusingASPwasneversoeasy!"
SubjectoftheEmailMessage
CDONTSObj.Subject="SendaEmail"
AssigningthevalueofyourmessagetotheObject
CDONTSObj.Body=MessageBody
Sendtheemail
CDONTSObj.Send
SettheCDONTSobjecttonothing
SetCDONTSObj=nothing
ActiveServerPage技术为应用开发商提供了基于脚本的直观、快速、高效的应用开发手段,极大地提高了开发的效果。在讨论ASP的安全性问题之前,让我们来看看ASP是怎么工作的。 |
|