I was trying to build this as a drop down box; it came as a selection list. Can you please tell me what do I need to change to make it a drop down?
<td><form action="" method="post" name="form2">
Medicine 1 :
<select name="select1" size="8">>
<%
If NOT RsList.EOF Then
While NOT RsList.EOF
%>
<option value='<%= RsList.Fields("Product_Name").Value%>'><%= RsList.Fields("Product_Name").Value%></option>
<%
RsList.MoveNext
Wend
End If
%>
</select>
</form></td>
Thanks
Mo
<td><form action="" method="post" name="form2">
Medicine 1 :
<select name="select1" size="8">>
<%
If NOT RsList.EOF Then
While NOT RsList.EOF
%>
<option value='<%= RsList.Fields("Product_Name").Value%>'><%= RsList.Fields("Product_Name").Value%></option>
<%
RsList.MoveNext
Wend
End If
%>
</select>
</form></td>
Thanks
Mo