I'd do something like this.....
Code:
Dim strValues
Dim arrValues
Do While Not myRS.eof
strValues = strValues & request.form("textbox" & myRs("ID")) &","
myRS.MoveNext
Loop
strValues = left(strValues, len(strValues)-1)
arrValues = split(strValues,",")
so you are probably not too far wrong in what you are trying.... if you want to attach your code I'm happy to have a look over it for you.