Html forms don't do arrays. The best you're gonna get via Request.Form()
is a comma-delimited list, and that's if you have multiple form fields with the same name: there is just no way to pass along an entire array "in one piece".
Based on your "I've forced 2 SQL columns into the same select box" comment, I think what you need is something like:
<select name='Person' size='1'>
<option value='NameID1~AddressID1'>John Smith, 123 Main Street</option>
<option value='NameID1~AddressID2'>John Smith, 345 Elm Avenue</option>
...
</select>
... which you would handle on the submit end by splitting on the delimiter character:
const delimiter = "~"
selection = Request.Form("Person")
If Instr(selection,delimiter) > 0 Then selection = Split(selection,delimiter)
Naturally, you need to choose your delimiter character(s) such that there's no chance it'll occur in your option values.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…