admin
05-30-2003, 01:52 PM
There is no guarantee that when you do a For Each... that the items will be processed in any particular order. There is a trick though you can do with the Request.Form...
For i = 1 To Request.Form.Count
fieldName = Request.Form.Key(i)
fieldValue = Request.Form.Item(i)
Try it out with one of your forms.
For i = 1 To Request.Form.Count
fieldName = Request.Form.Key(i)
fieldValue = Request.Form.Item(i)
Try it out with one of your forms.