|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
对于中小型web应用来说,php有很强的竞争力,linux+apache+mysql+php(lamp)的组合几乎可以胜任绝大多数网站的解决方案,对于大型应用来讲,对于系统架构要求更高,需要有成熟的框架支持,jsp的struts是个不错的框架,国内介绍它的资料也非常多,应用逐渐广泛起来。asp就不用说了,文件1-JmailUpload.asp
这个例子展现了在用户上传文件给SERVER时怎样带JMAIL的附件
<html>
<head>
<title>emailform</title>
</head>
<body>
<fontface="verdana,arial"size="2"><b>
<formmethod="post"action="JmailUploadProcess.asp"ENCTYPE="multipart/form-data">
Completethisformandclickthesubmit-button.Wewillansweryour
questionsassoonaspossible.
<br><br>
你的名字<br>
<inputtype="text"size="25"name="name"><br>
你的邮箱<br>
<inputtype="text"size="25"name="email"><br></FONT>
收信者名字<br>
<inputtype="text"size="25"name="recipient"><br></FONT>
题目<br>
<selectname="subject"size="1">
<optionvalue="help">help
<optionvalue="tips">tips
<optionvalue="other">other
</select>
<br>
内容<br>
<textareaname="body"cols="40"rows="15"wrap="PHYSICAL"></textarea>
<br>
附件<br>
<inputtype="file"name="attachment">
<br>
<br>
<inputtype="submit"value="Submit">
</form>
</b></font>
</body>
</html>
文件2-JmailUploadProcess.asp
<%
Setupload=Server.CreateObject("w3.Upload")
SetJMail=Server.CreateObject("JMail.SMTPMail")</FONT>
反省附件并到场到email中
setattachment=upload.Form("attachment")
ifattachment.IsFilethen
JMail.AddCustomAttachmentattachment.filename,attachment.item
endif
失掉form变量,利用upload组件
Name=upload.Form("name")
SenderEmail=upload.Form("email")
Subject="Regarding"&upload.Form("subject")
Recipient=upload.Form("recipient")
Body=upload.Form("body")
输出你的SMTP-server
JMail.ServerAddress="xxx.zzz.yyy"
JMail.Sender=Senderemail
JMail.Subject=Subject
JMail.AddRecipientRecipient
JMail.Body=Body
JMail.Priority=3
JMail.Execute
%>
<html>
<head>
<title>Dimac</title>
</head>
<body>
<br>
<br>
<palign="center"><fontface="Arial,geneva"size="5">
邮件发送</font></p>
<center>
<fontface="Arial,geneva"size="3">
你的邮件被发送到<%=Recipient%><br>
<br>
<br>
<br>
</font>
</center>
</body>
</html>
</p>结论:和PHP一样,ASP简单而易于维护,很适合小型网站应用,通过DCOM和MTS技术,ASP甚至还可以完成小规模的企业应用,但ASP的致命缺点就是不支持跨平台的系统,在大型项目开发和维护上非常困难。 |
|