I'm trying to do a combination 'go to detail page' and 'move through records'. I can get the detail page to show correctly, but I want the detail page to have its own navigation through the rest of the records (i.e. previous/next links) so you don't have to go back to the master page. The problem I figured out is that I'm passing the id of the specific record in the url and the query is only looking for records matching that id number. Is there a way to tell the recordset to start on that record and get the rest for the navigation? thanks!
pass all of the search criteria, offset, limit, etc with the ID. Then you can run the exact same query (yielding the exact same results) and find the previous and next from there.