In VisualBasic.net windows app I had a form that would allow you to look at one record at a time. Data was bound to textboxes and comboboxes. My boss would like this changed over to a VB web form

Here is the problem

after binding the filling the dataset and binding the appropriate field to each textbox it properly produces the first row in the database

but when I tried to create navigation buttons to move first/previous/next/last I copied and pasted from the VB windows form to the web form the following line stopped being valid

bindingcontext(<dataset obj>, <table name>).position

How would I have to modify this in order to accomplish this task? so that I could bidirectionly traverse the dataset