|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
因为现在数据库都使用标准的SQL语言对数据库进行管理,所以如果是标准SQL语言,两者基本上都可以通用的。SQLServer还有更多的扩展,可以用存储过程,数据库大小无极限限制。<html>
<head>
<title>Confirmation</title>
<body>
<%
SetJMail=Server.CreateObject("JMail.SMTPMail")
ThisismylocalSMTPserver
JMail.ServerAddress="mail.yourdomain.com:25"
Thisisme....
JMail.Sender="myemail@mydomain.net"
JMail.Subject="Hereyougo..."
Gettherecipientsmailboxfromaform(notethelackofaequalsign).
JMail.AddRecipient"mum@any.com"
JMail.AddRecipient"dad@some.com"
Thebodypropertyisbothreadandwrite.
Ifyouwanttoappendtexttothebodyyoucan
useJMail.Body=JMail.Body&"Helloworld!"
oryoucanuseJMail.AppendText"HelloWorld!"
whichinmanycasesiseasiertouse.
JMail.Body="Hereyougo.Yourrequesthasbeenapproved"&_
"andtheprogramisattachedtothismessage"
1-highestpriority(Urgent)
3-normal
5-lowest
JMail.Priority=1
JMail.AddHeader"Originating-IP",Request.ServerVariables("REMOTE_ADDR")
MustmakesurethatIUSR_hasaccesstothefollowingfiles.
JMail.AppendBodyFromFile"e:mailstandard_footer.txt"
JMail.AddAttachment"e:productsMyProduct.exe"
Sendit...
JMail.Execute
%>
<center>
Ane-mailhasbeensenttoyourmailbox(<%=request.form("email")%>).
</center>
</body>
</html>
ASP一般认为只能运行在IIS上,正如前面所提到的,这并不是十分正确,事实上,ASP也能运行在Apache上。ApacheASP可在任意Apache服务器上运行有限的ASP功能,所需做的,只需打开mod_perl。 |
|