| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 390 人关注过本帖
标题:[求助] 新手求助:文件上传问题!!
只看楼主 加入收藏
topsun321
Rank: 1
等 级:新手上路
帖 子:18
专家分:0
注 册:2006-4-26
收藏
 问题点数:0 回复次数:1 
[求助] 新手求助:文件上传问题!!


错误提示如下:

文件上传!
--------------------------------------------------------------------------------


HTTP上传程序 版本 1.0


请输入要上传至的目录! [返回]

上传模块代码如下:

<%OPTION EXPLICIT%>
<!--#include file="upload_fun.asp"-->
<html>
<head>
<title>文件上传</title>
</head>
<body>
<br>文件上传!<hr size=1 noshadow width=300 align=left><br><br>
<%
dim upload,file,formName,formPath,iCount
set upload=new upload_file ''建立上传对象

response.write upload.Version&"<br><br>" ''显示上传类的版本

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

iCount=0
for each formName in upload.file ''列出所有上传了的文件
set file=upload.file(formName) ''生成一个文件对象
if file.FileSize>0 then ''如果 FileSize > 0 说明有文件数据
file.SaveAs Server.mappath(formPath&file.FileName) ''保存文件
response.write file.FilePath&file.FileName&" ("&file.FileSize&") =>

"&formPath&File.FileName&" 成功!<br>"
iCount=iCount+1
end if
set file=nothing
next
set upload=nothing ''删除此对象
Htmend iCount&" 个文件上传结束!"

sub HtmEnd(Msg)
set upload=nothing
response.write "<br>"&Msg&" [<a href=""javascript:history.back();"">返回</a>]

</body></html>"
response.end
end sub
%>
</body>
</html>

搜索更多相关主题的帖子: 文件 
2006-05-08 12:59
islet
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:89
帖 子:6548
专家分:0
注 册:2005-1-28
收藏
得分:0 
啥提示?
2006-05-08 14:21
快速回复:[求助] 新手求助:文件上传问题!!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.012383 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved