Joseph McGarvey
01-28-2004, 10:28 PM
When I run this code, it returns my form values out of order from where they appear in the form. But when I write out the raw Request.Form as a string, the order is correct. Any way around this? I don't see a pattern to why it reorders.
For each objItem in Request.Form
Response.Write(Request.Form(objItem)) & "<br>"
Next
Thanks!
For each objItem in Request.Form
Response.Write(Request.Form(objItem)) & "<br>"
Next
Thanks!