| Object: | SoftArtisans.UploadDictionary |
| Syntax: | Item |
| Type: | String or SA-File object |
| Read/Write: | Read/Write |
| Description: | This property 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.FormEx.Item("key") is equivalent to upl.FormEx("key"). It is the Item property that allows this to occur. |
For Each x in upl.FormEx
Response.Write("<TR><TD ALIGN=""RIGHT"">" & x & "</TD><TD>'" & upl.FormEx(x) & "'</TD></TR>")
Next
<%=upl.FormEx("FILE1").UserFilename%>
| Previous Page | Next Page |