| |
rhl150
Posts: 29
Score: 0
Joined: 5/23/2001
From: New Zealand
Status: offline
|
response.write "<SELECT>" for i = 0 to ubound(a) response.write "<OPTION VALUE=" & i & ">" & a(i) _ & "</OPTION>" next response.write "</SELECT>" Since you're setting the value of each item to be the array index, that's the value you'll get when the item is selected.
|
|