asp无组件上传
upload.asp
<html>
<title>example</title>
<body>
<!--#include FILE="upload_5xsoft.inc"-->
<%
set upload=new upload_5xsoftset
file=upload.file("file1")
if file.fileSize>0 Then file.saveAs Server.mappath("01.jpg")
response.write "<br>上传文件:"&file.FileName&" => temp.jpg OK!"
response.write "<br>文件大小:"&file.FileSizeset file=nothingend ifset upload=nothing 报错行
%>
</body>
</html>
我的上传为什么老是提醒我语句没有结束??
upload.html
<html>
<title>example</title>
<body>
<form name="form1" method="post" action="upload.asp" enctype="multipart/form-data">
<input type=file name="file1">
<input type=submit name="submit" value="提交">
</form>
</body>
</html>