ASP怎样无组件上传文件到指定文件夹,并且将路径写入数据库??如题 谢谢了
答案:2 悬赏:10 手机版
解决时间 2021-03-20 08:02
- 提问者网友:泪痣哥哥
- 2021-03-20 02:48
ASP怎样无组件上传文件到指定文件夹,并且将路径写入数据库?? 哪个有源码的发到我的QQEmail好吗?!谢谢。。。
最佳答案
- 五星知识达人网友:有你哪都是故乡
- 2021-03-20 04:08
" if Upload.forms("file1")<>"" then '这里判断你file1是否选择了文件 path=server.mappath("files") '文件保存路径(这里是files文件夹) set tempCls=Upload.files("file1") successful=tempCls.SaveToFile(path,0) '以时间+随机数字为文件名保存 'successful=tempCls.SaveToFile(path,1) '如果想以原文件名保存,请使用本句 if successful then response.write tempCls.FileName & "上传完毕,大小为" & Upload.getsize(tempCls.Size) & ";
本地路径" & Upload.forms("file1") & "!
" Response.Redirect "InsertDatabase.asp?FileName="&Upload.Forms("text1")&"&FilePath="&tempCls.FileName else response.write "上传失败" end if set tempCls=nothing end if end if set Upload=nothing '销毁类实例 %>