Hi all. I'm having real trouble getting anything to do with the bookmark property of a recordset to work. I want to put all the bookmarks of all the records in a RS into an array, so that I can use the array to go straight to a specific record in the RS. My current code looks something like:

<SELECT NAME="dcombo">
<%docreg_rs.movefirst%>
<%do while not docreg_rs.eof%>
<OPTION VALUE=<%=recnum%>> <%=docreg_rs.fields("RefNo")%>
<%docreg_rs.MoveNext
RecArray(recnum) = docreg_rs.Bookmark
recnum = recnum + 1%>
</OPTION>
<%Loop%>
<%Session("RecBooks") = RecArray
docreg_rs.Close%>
</SELECT>

If anyone can see a problem, or has ANY ideas, please reply!

Thanks.