Forum Moderators: open
thanks
<select name="LINK_CAT" class="inputFieldIE" id="select" style="width:200" language=javascript onChange="fncsubmit()">
<%
While (NOT rsCat2.EOF)
%>
<option value="<%=(rsCat2.Fields.Item("CAT_ID").Value)%>"><%=(rsCat2.Fields.Item("CAT_NAME").Value)%></option>
<%
</select>
</select>
Notice the new option before the while loop.
-Matt