Do not use the Request.Form object on the same page that you are using to process your uploads. Use the SoftArtisans.FileUp object's Form or FormEx object instead.
For example, you would replace:
Response.Write Request.Form("Text1")
with
Response.Write upl.Form("Text1")
Note: If you need to retrieve form elements with multiple values, you should use the FileUp object's FormEx property. FormEx has all the functionality of the Form object, but it also contains support for such things as multiselect list boxes and check boxes.
To access the elements of a FormEx collection, use either:
A "For...Each" statement.
For example: "For each item in upl.FormEx(multipart)"
OR
Index numbers.
For example: "FormEx("name").index"
|