......all I want to do is "read" thru a combobox in ASP and "response.write" each and every option within that combobox - selected or not!!

In VB I do something like this and it works - how can I do this in ASP.

'VB CODE - it "reads" thru the combo/listbox and prints each item....
Private Sub Command1_Click()
Dim n As Integer

For n = 0 To 3
Combo1.ListIndex = n
Print Combo1.Text
Next

End Sub


I have posted a thread called "Please - this cannot be so difficult" which explains this in detail and no-one seems to be able to help.

Please, anyone, help.

Thanks,
T