|
-
Jan 9th, 2000, 08:04 PM
#1
Thread Starter
Frenzied Member
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|