looping what the heck?

  • Thread starter Thread starter Mr. SweatyFinger
  • Start date Start date
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".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top