I know there are a lot of combo box record set questions in the forum but I have not seen an answer to this one:
I have a form with two identical sets of data one of the items is a drop down box that pulls from a table in the data base. On the first occurance of the dropdown box it works fine. I use the typical:
<select size="1" name="EDUC1_DEGREE"><%
While not objRS1.EOF
response.write("<option value = "&objRS1("code"&">"&objRs1("description"&"</option>"
objRS1.MoveNext
Wend
%>
</select>
The problem is the second time i need to use this code to populate the dropdown it doesn't work. I have a feeling it is because the record set is at EOF. How do i reset it to BOF?
Thanks
I have a form with two identical sets of data one of the items is a drop down box that pulls from a table in the data base. On the first occurance of the dropdown box it works fine. I use the typical:
<select size="1" name="EDUC1_DEGREE"><%
While not objRS1.EOF
response.write("<option value = "&objRS1("code"&">"&objRs1("description"&"</option>"
objRS1.MoveNext
Wend
%>
</select>
The problem is the second time i need to use this code to populate the dropdown it doesn't work. I have a feeling it is because the record set is at EOF. How do i reset it to BOF?
Thanks