如何上传图片

时间:2011-02-01 13:11:43

标签: file-upload asp-classic

HI,我使用asp作为服务器端脚本。我通过HttpURLConnection从java调用asp页面并通过ImageIO.write()方法传递图像。任何机构都可以告诉我如何将该文件从asp上传到我的服务器目录。

1 个答案:

答案 0 :(得分:0)

对于纯(无DLL)上传,您应该查看Pure ASP Uploadcheck out this article

但是,更常见,经过测试,性能更佳的解决方案是安装第三方库。 我喜欢AbcUpload from WebSuperGoo(免费获得LinkBack许可证)

basicupload.htm

<html>
<body>
<form method="post" action="basicupload.asp" enctype="multipart/form-data">
<input type="file" name="filefield"><br>
<input type="submit" name="submit" value="submit">
</form>
<body>
</html> 

basicupload.asp

<% @Language="VBScript" %>
<%
Set theForm = Server.CreateObject("ABCUpload4.XForm")
theForm.Overwrite = True
If theForm.Files("filefield").FileExists Then
   theForm.Files("filefield").Save "myupload.dat"
End If
%>
<html>
<body>
File uploaded...
</body>
</html>