⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xpuploadok.asp

📁 一个不错的代码 一个不错的代码 一个不错的代码
💻 ASP
字号:
<%OPTION EXPLICIT%>
<!--#include FILE="upload_5xsoft.inc"-->
<html>
<head>
<title>惠信新闻系统无组件文件上传</title>
<meta http-equiv="refresh" content="3;url=addnews1.asp">
</head>
<body>
<br>文件上传!<hr size=1 noshadow width=300 align=left><br><br>
<%
dim upload,file,formName,formPath,iCount,newsid
set upload=new upload_5xSoft ''建立上传对象

if upload.form("filepath")="" then   ''得到上传目录
HtmEnd "请确认上传目录存在!"
set upload=nothing
response.end
else
formPath=upload.form("filepath")
''在目录后加(/)
if right(formPath,1)<>"/" then formPath=formPath&"/"
end if
newsid=upload.form("newsid")
iCount=1
for each formName in upload.file ''列出所有上传了的文件
set file=upload.file(formName)  ''生成一个文件对象
if file.FileSize>0 then         ''如果 FileSize > 0 说明有文件数据
file.SaveAs Server.mappath(formPath& NewsID & "-" & cstr(iCount)&"."& getFileExtName(file.fileName))   ''保存文件
response.write file.FilePath&file.FileName&" ("&file.FileSize&") => "&Server.mappath(formPath)& NewsID & "-" & cstr(iCount)&"."& getFileExtName(file.fileName)&" 成功!<br>"
iCount=iCount+1
end if
set file=nothing
next
set upload=nothing  ''删除此对象
response.write iCount-1&" 个文件上传结束!"

sub HtmEnd(Msg)
set upload=nothing
response.write "<br>"&Msg&" [<a href=""javascript:history.back();"">返回</a>]</body></html>"
response.end
end sub
%>
</body>
</html>
<%
'获得文件的后缀名
function getFileExtName(fileName)
dim pos
pos=instrrev(filename,".")
if pos>0 then
getFileExtName=mid(fileName,pos+1)
else
getFileExtName=""
end if
end function
%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -