|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
因为现在数据库都使用标准的SQL语言对数据库进行管理,所以如果是标准SQL语言,两者基本上都可以通用的。SQLServer还有更多的扩展,可以用存储过程,数据库大小无极限限制。文件1-Upload.asp
<html>
<head>
<title>w3Upload</title>
</head>
<body>
用w3upload组件上传
<formaction="UploadProcess.asp"method="post"enctype="multipart/form-data">
<inputtype="file"name="thefile"><br>
Chooseaname:<inputtype="text"name="name"><br>
<inputtype="submit"value="Transmit">
</form>
</body>
</html>
文件2-UploadProcess.asp
<%@LANGUAGE="VBSCRIPT"%>
<%
Setupload=Server.CreateObject("w3.upload")
actualName=upload.Form("name")
SetfileName=upload.Form("thefile")
iffileName.IsFilethen
fileName.SaveToFile(Request.ServerVariables("APPL_PHYSICAL_PATH")&""&actualName)
endif
%>
<html>
<head>
<title>w3Upload</title>
</head>
<body>
<br>
<br>
<center>
Finished!
</center>
<br>
<br>
<br>
</body>
</html>
文件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>
强大的可扩展性。ASP具有强大的扩展性,可以实现与多种网络、硬件设备的连接:通过专用的通讯线路远程接入企业;通过远程拨号服务器为远程拨号客户提供服务;通过WAP为移动电话互联网客户服务。 |
|