I have an .asp page which processes a form on another page.
This all works ok on my local machine (running PWS) but on the web server I upload it to I get an error at this point:

For i = RequestFormIndex to (Request.Form.Count)
answerArray(Request.Form.Item(i)) = True
Next

The form is an online quiz.

This section of code refers to a set of optionBox controls in the previous form. I have no problems processing a question using radio button controls, but the server doesn't like this bit of code for the option box question...

I have tried using
Request.form(i)
Request.form(i).Item
etc. but they all give me an error.

I know that Request.Form.Item("somestring") will work, but not this code.

HELP!