benniesanders
Programmer
Greetings, I'm building a lengthy contact form and when I test it, I'm using the following code:
Is there some way to display these in in the same order they are in the form? Right now, the results are all over the place... Thanks!
Code:
For Each sItem In Request.Form
Response.Write(sItem)
Response.Write "=" & request.form(sItem) & "<br>"
Next