Sorry about any confusion,
I have built a CDONTS mailto form in HTML that posts to an ASP page. When the fields are posted I grab them in ASP (using the For Each loop) they are not displaying in the order I need them. Lets say I have a form that the user fills out and it looks like:
Ordered by: [name goes here]
Office: [office goes here]
Ship Attention to: [name goes here]
Small T-Shirt Quantity: [quantity goes here]
Large Sweatshirt Quantity: [quantity goes here]
Medium Golf Shirt Quantity: [quantity goes here]
Baseball Cap Quantity: [quantity goes here]
Additional Comments: [additional comments go here]
As you can see the form has been set up in a top to bottom fashion with fields in a certain order but the FOR EACH loop on the ASP page grabs the fields in whatever order it wants.
This is a sample of what the output may look like:
Ordered by: Sam Steller
Office: Sydney
Small T-Shirt Quantity: 10
Ship Attention to: Dave Peters
Large Sweatshirt Quantity: 5
Additional Comments: This is for our year end golf tournament, the last week of July. Please do not send until the second week of July
Medium Golf Shirt Quantity: 2
Baseball Cap Quantity: 8
The proper order should be:
Ordered by: Sam Steller
Office: Sydney
Ship Attention to: Dave Peters
Small T-Shirt Quantity: 10
Large Sweatshirt Quantity: 5
Medium Golf Shirt Quantity: 2
Baseball Cap Quantity: 8
Additional Comments: This is for our year end golf tournament, the last week of July. Please do not send until the second week of July
As you can see the FOR EACH loop is reading in a weird order. Can I set the read order of a For Each Loop to read top to bottom instead of the random order it is reading in now?
I hope that clears up any confusion and thanks for any help,
AJ