This example demonstrates how to upload multiple files to the server.
ASP doesn't provide a native functionality to collect
uploaded files and form fields data.
The default enctype is application/x-www-form-urlencoded and that is what
ASP will process all data into the Request.Form object.
File uploads, however, requires to specify the multipart/form-data
encryption type.
Once it has been done, ASP will no longer parse the POST data into the
Request.Form object.
Handling uploads from EAFlashUpload is the same as handing any HTTP upload.
If you run this Classic ASP examples then probably you alredy use some third party component for form-based file upload.
So you just need to find example related to your component and assign the name of this file for the values of "uploadUrl" variable.