Hi, kk,
I just read the manual about the aspupload. First you have to use the following format for <form> tag:
<FORM NAME="MyForm" METHOD="POST" ENCTYPE="multipart/form-data"
ACTION="upload1.asp">
in the :Uploads1.asp page, before you retrive any data from form, you have to write the following two lines:
Set Upload = Server.CreateObject("Persits.Upload.1")
Count = Upload.Save("c:\upload")
After you call the Save function, all the data in the form are stored in two collections: Files and Form. so you use:
For Each File in Upload.Files
......................
Next
to retrieve the file.
Using:
Upload.Form("textField")
to retrieve individual item data.
You can check the following website:
http://www.asp101.com/resources/aspupload.asp
Hope it'll give you some help!
Andraw