File.FileName 文件名字
File.MD5Hash
补充:按例子的解释是check whether this file already exists using MD5 hash ,意思是检查文件是否存在,是个可选项.
文字描述与文件的同时上传并显示,例子Form2.asp(自带)和UploadScript2.asp:
UploadScript2.asp
<HTML>
<BODY>
<%
Set Upload = Server.CreateObject("Persits.Upload")
Upload.Save "c:upload"
%>
Files:<BR>
<%
For Each File in Upload.Files
Response.Write File.Name & "= " & File.Path & " (" & File.Size &" bytes)<BR>"
Next
%>
<P>
Other items:<BR>
<%
For Each Item in Upload.Form
Response.Write Item.Name & "= " & Item.Value & "<BR>"
Next
%>
</BODY>
</HTML>









