M
Mr. SweatyFinger
Given this:
***************************
For Each entryName In Request.Form
Response.Write("Name: " & entryName & "<br/>")
Response.Write("Value: " & Request.Form(entryName) & "<br/>")
Next
****************************
there are several properties of a form field
when i loop through the "items", how am I supposed to know which of the
"items" or "properties" i am looping through
for instance, request.form has items, keys, allkeys, count.
why doesn't this pull in the "keys", rather than the "items".
***************************
For Each entryName In Request.Form
Response.Write("Name: " & entryName & "<br/>")
Response.Write("Value: " & Request.Form(entryName) & "<br/>")
Next
****************************
there are several properties of a form field
when i loop through the "items", how am I supposed to know which of the
"items" or "properties" i am looping through
for instance, request.form has items, keys, allkeys, count.
why doesn't this pull in the "keys", rather than the "items".