Forum Moderators: open
Set RS = DB.execute("SELECT * FROM EXHIBITORS WHERE
left(exhibitor_name,1) IN ('a','b','c','d','e','f','g') ORDER BY exhibitor_name ASC")
Response.Write("<option value=1>" & "Select Your Organization")
While not RS.eof
EXHIBITOR_ID = RS("exhibitor_id")
EXHIBITOR_NAME = RS("exhibitor_name")
Response.Write("<option value=" & EXHIBITOR_ID & ">" & EXHIBITOR_NAME)
RS.movenext()
Wend
RS.close
Thanks for any help on this question.