HOME > ASP > ASP Forum > Code Upload file ของ ASP จาก script ทั้ง 2 ไฟล์ด้านบนนั้นผมเอาไปใช้ได้จริง แต่ถ้าผมเปลี่ยนจาก Upload.Save "c:\upload" เป็น Upload.Save Server.Mappath("\upload")
=================UploadScript2.asp=================
<%
Set Upload = Server.CreateObject("Persits.Upload.1")
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
%>
=========================================