PDA

View Full Version : Request.Form Collection out of order


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!

M@rco
01-28-2004, 11:34 PM
All is explained below:
http://www.aspfaqs.com/aspfaqs/ShowFAQ.asp?FAQID=64

;)

Joseph McGarvey
04-30-2004, 03:55 PM
I never saw this reply... months later, I thank you!!