![]() |
Sergey Kornilov admin 10/6/2004 |
Chris, if not rsTemp.EOF then Response.Write "<select size = " & strSize & " name=""" & strName & """>" Response.Write "<option value="""">Please select</option>" while not rsTemp.Eof Response.Write "<option value=""" & rsTemp(0) & """>" & rsTemp(1) & "</option>" rsTemp.MoveNext wend Response.Write "</select>" rsTemp.Close set rsTemp = Nothing |
M
|
merriamdesign author 10/8/2004 |
Thanks for the code... I am not sure where to put it though. Do I insert it in the search form. Sorry to be so dumb about this stuff... I am a designer, trying to be a developer. |