I am using following code to create list
But this code does not allow user to type some text. As soon as the user types text, common list element should be displayed from oracle table in list.
Is it possible?
Thanks and regards,
Vikas
Code:
<tr>
<td align="right">MIS No : </td>
<td>
<select name="mis_no" style="width:250px ">
<% set rs = conn.execute("select a.mis_no, a.seq_no, a.lot_no, b.item_description from item_procurement_history_dtl a, item_master b where a.status = 'D' and b.item_code = a.item_code order by a.item_code, substr(mis_no, instr(mis_no, '/', -1)+1)")
do while not rs.eof%>
<option value="<%=rs("mis_no")%>"><%=rs("mis_no")%></option>
<% rs.movenext
loop%>
</select>
</td>
</tr>
Is it possible?
Thanks and regards,
Vikas
Comment