查看: 1526|回复: 8
|
如何upload file to server by using ASP??HELP!!!
[复制链接]
|
|
我想知道如果我要做一页可 upload file to server 是 不是只是加入这些coding 而已?须不须要install any software????
form
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 1</title>
</head>
<body>
<form enctype = "multipart/form-data" Action ="uploadresult.asp" Method = "POST">
Please choose :
<BR><input name = "picture" type=file Accept ="image/*">
<BR><Input type=submit value="submit me!">
</form>
</body>
</html>
<HTML><HEAD>
<TITLE>Uploadsimplerespond.asp by softwareartisans.com</TITLE>
</HEAD><BODY>
Thank you for uploading your file.<br>
<% Set upl = Server.CreateObject("SoftArtisans.FileUp")
upl.Path = Server.Mappath ("/upload/tests")
upl.SaveAs "upload.tst"%><BR>
Total Bytes Written: <%=upl.TotalBytes%>
</BODY></HTML> |
|
|
|
|
|
|
|
发表于 9-11-2005 09:11 PM
|
显示全部楼层
你有这个SoftArtisans的dll 吗?
如有就要register到system去..
其实不用以上dll也可以做.. |
|
|
|
|
|
|
|
发表于 10-11-2005 09:14 AM
|
显示全部楼层
|
|
|
|
|
|
|
发表于 10-11-2005 06:42 PM
|
显示全部楼层
|
|
|
|
|
|
|
楼主 |
发表于 12-11-2005 12:22 PM
|
显示全部楼层
如果我想我的file upload 了 save under 一 个 specific 的 filename 要怎样做? |
|
|
|
|
|
|
|
发表于 12-11-2005 01:35 PM
|
显示全部楼层
回复 #5 cytin 的帖子
以下来自 upload.asp..
Public Sub SaveToDisk(sPath)
Dim oFS, oFile
Dim nIndex
If sPath = "" Or FileName = "" Then Exit Sub
If Mid(sPath, Len(sPath)) <> "\" Then sPath = sPath & "\"
Set oFS = Server.CreateObject("Scripting.FileSystemObject")
If Not oFS.FolderExists(sPath) Then Exit Sub
Set oFile = oFS.CreateTextFile(sPath & FileName, True)
' output mechanism modified for buffering
oFile.Write BufferContent(FileData)
oFile.Close
End Sub
[ 本帖最后由 jasonmun 于 12-11-2005 01:36 PM 编辑 ] |
|
|
|
|
|
|
|
楼主 |
发表于 15-11-2005 06:05 PM
|
显示全部楼层
我已用pure ASP 1001 upload file 的方法,当在 localhost test 的 时 后 可 以 upload 但是 当 online test 时 file 不 能 upload 到 server.我 的 path name 已经对了。请问用 pure ASP 101 upload file 的方法是不是要install VB Scricpt 5.0 在 server? |
|
|
|
|
|
|
|
发表于 15-11-2005 06:28 PM
|
显示全部楼层
你用IIS吧?
是要在IIS作setting的..
否则会出现permission denied.. |
|
|
|
|
|
|
|
楼主 |
发表于 15-11-2005 07:23 PM
|
显示全部楼层
我可以在IIS run但是如果我放online 就不能upload file 去server.请问你们知道是什么问题吗? |
|
|
|
|
|
|
| |
本周最热论坛帖子
|