Class: SoftArtisans.UploadDictionary
Property: Item
Input: String
Output: Member of UploadDictionary
Read/Write
Description: This represents the value of a particular item in the dictionary.
This is the default property of the UploadDictionary object and is used to maintain compatibility with the ASP Request object.
upl.Form.Item("key") is equivalent to upl.Form("key"). It is the Item property that allows this to occur.
Example 1:
for each x in upl.form
response.write("<TR><TD ALIGN=""RIGHT"">" & x & "</TD><TD>'" & upl.form(x) & "'</TD></TR>")
next
Example 2:
<%=upl.Form("FILE1").UserFilename%>