|
|
|
|
|
| | |
|
Active Server Pages ASP control controls class classes module script Scripts applet CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: drop down menus as search criteria on search pages |
From: |
atahualpa |
Date: |
5/13/2001 12:43:03 PM |
IP: |
212.216.50.121 |
in html:
<select name="myDropDown">
<% lookForThat() %>
</select>
in asp:
SUB lookForThat
Rs.Open "myTable",myConnection,adOpenDynamic,adLockOptimistic,adCmdTable
do while not Rs.Eof
Response.Write("<option value=" & Rs("code") & ">" & Rs("Description") & "</option>")
Rs.MoveNext
loop
Rs.Close
END Sub
... or something like that ... |
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|