jasonhuibers
Programmer
I have a list that is dynamically populated by a sql query. I want to be able to click on an item from the list and return the RecordNumber column from the query..
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<select>
<%
cSQL = "SELECT id,description from myTabel"
rs.open cSQL, conn
do while not rs.eof
response.write "<option value=" & rs(0) & _
">" & rs(1)
rs.movenext
loop
%>
</select>