首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > IIS >

怎么让文件上传后不改变它的文件名

2013-03-26 
如何让文件上传后不改变它的文件名ASP无组件上传部分代码:下面代码上传文件后。文件名是按日期生成的。我希

如何让文件上传后不改变它的文件名
ASP无组件上传部分代码:下面代码上传文件后。文件名是按日期生成的。我希望文件名是原来的文件名谢谢,如何改
<!--#include file="upfile_class.asp"-->
<%
const upload_type=0   '上传方法:0=无惧无组件上传类,1=FSO上传 2=lyfupload,3=aspupload,4=chinaaspupload

dim upload,oFile,formName,SavePath,filename,fileExt,oFileSize
dim EnableUpload
dim arrUpFileType
dim ranNum
dim msg,FoundErr
dim PhotoUrlID
msg=""
FoundErr=false
EnableUpload=false

%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
BODY {
BACKGROUND-COLOR: #E1F4EE;
font-size:9pt
}
.tx1 {
height: 20px;
font-size: 9pt;
border: 1px solid;
border-color: #000000;
color: #0000FF
}
-->
</style>
</head>
<body leftmargin="2" topmargin="5" marginwidth="0" marginheight="0" >
<%
if EnableUploadFile="No" then
response.write "系统未开放文件上传功能"
else
select case upload_type
case 0
call upload_0()  '使用化境无组件上传类
case else
'response.write "本系统未开放插件功能"
'response.end
end select
end if
%>
</body>
</html>
<%
sub upload_0()    '使用化境无组件上传类
set upload=new upfile_class ''建立上传对象
upload.GetData(104857600)   '取得上传数据,限制最大上传100M
if upload.err > 0 then  '如果出错
select case upload.err
case 1
response.write "请先选择你要上传的文件!"
case 2
response.write "你上传的文件总大小超出了最大限制(200k)"
end select
response.end
end if
PhotoUrlID=Clng(trim(upload.form("PhotoUrlID")))
if PhotoUrlID>0 then
SavePath = "UploadFiles"   '存放上传文件的目录
else
SavePath = "UploadFiles"   '存放上传文件的目录
end if
if right(SavePath,1)<>"/" then SavePath=SavePath&"/" '在目录后加(/)

for each formName in upload.file '列出所有上传了的文件
set ofile=upload.file(formName)  '生成一个文件对象
oFileSize=ofile.filesize
if oFileSize<100 then
msg="请先选择你要上传的文件!"
FoundErr=True
else
 select case PhotoUrlID
   case 0 
    if oFileSize>(MaxFileSize*1024) then
          msg="文件大小超过了限制,最大只能上传" & CStr(MaxFileSize) & "K的文件!"
 FoundErr=true
    end if
       case 1
    if oFileSize>(100000*1024) then
          msg="文件大小超过了限制,最大只能上传100M的文件!"
 FoundErr=true
    end if
 end select
end if

fileExt=lcase(ofile.FileExt)
arrUpFileType=split("gif|jpg|bmp|png|swf|doc|rar|xls|exe","|")'如需添加其它类型的文档请在这里添加文档后缀名
for i=0 to ubound(arrUpFileType)
if fileEXT=trim(arrUpFileType(i)) then
EnableUpload=true
exit for
end if
next
if fileEXT="asp" or fileEXT="asa" or fileEXT="aspx" then
EnableUpload=false
end if
if EnableUpload=false then
msg="这种文件类型不允许上传!\n\n只允许上传这几种文件类型:" & "gif|jpg|bmp|png|swf|doc|rar|xls|exe"


FoundErr=true
end if


strJS="<SCRIPT language=javascript>" & vbcrlf
if FoundErr<>true then
randomize
ranNum=int(900*rnd)+100
filename=SavePath&year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)&ranNum&"."&fileExt

ofile.SaveToFile Server.mappath(FileName)   '保存文件

response.write "文件上传成功!文件大小为:" & cstr(round(oFileSize/1024)) & "K"
select case PhotoUrlID
case 0
strJS=strJS & "parent.document.myform.PhotoSize1.value='" & cstr(round(oFileSize/1024)) & "';" & vbcrlf
case 1
strJS=strJS & "parent.document.myform.DefaultPicUrl.value='" & fileName & "';" & vbcrlf
end select
else
strJS=strJS & "alert('" & msg & "');" & vbcrlf
  strJS=strJS & "history.go(-1);" & vbcrlf
end if
strJS=strJS & "</script>" & vbcrlf
response.write strJS

set file=nothing
next
set upload=nothing
end sub
%>

[最优解释]
ofile.SaveToFile Server.mappath(SavePath&ofile.FileName)
[其他解释]
ofile.Name


[其他解释]

引用:
ofile.Name

能结合上面代码,写出来吗。。不明白谢谢
[其他解释]
'ofile.SaveToFile Server.mappath(FileName) '保存文件
 ofile.SaveToFile Server.mappath(ofile.FileName)'无惧上传时filename存储原来的文件名

[其他解释]
引用:
VBScript code

'ofile.SaveToFile Server.mappath(FileName) '保存文件
 ofile.SaveToFile Server.mappath(ofile.FileName)'无惧上传时filename存储原来的文件名

加在哪行啊。是要替换哪行??
[其他解释]
对比你的代码,用没注释的代码替换注释掉的
ofile.SaveToFile Server.mappath(FileName) 

====>

ofile.SaveToFile Server.mappath(ofile.FileName)
[其他解释]
引用:
对比你的代码,用没注释的代码替换注释掉的
ofile.SaveToFile Server.mappath(FileName) 

====>

ofile.SaveToFile Server.mappath(ofile.FileName)

可以了。但是又出新问题了。。本来保存在网站目录下UploadFiles文件夹里的。现在都保存在网站目录下了。。
[其他解释]
自己研究了下。解决了。非常感谢showbo的帮助
[其他解释]
我想做一个类似qq邮件那样的接收,发送的系统。可是我有疑惑,比如:我上传一个文件“aa.txt”,发第二封邮件时,也上传了一个“aa.txt”,下载时,文件名不更改。。。

热点排行