I am migrating an Access front end, SQL Server 2008 R2 backend, application to web forms using VB.NET and ASP.NET. The page I'm having problems with has three tabs, and one of the tabs has the record forward/back buttons, where you can go to the previous, the next, the first, the last, all, or enter a number for the record you want.
I want to recreate that on a web form. I've got the tabs with the AjaxToolKit working fine. I've got text boxes and drop downs to mimic the look and feel of the form. I'm using a couple of gridviews, also. What we have is a one to many relationship between the first and second tabs. The first tab will always be the same. The second tab will be one of possibly many related records, presented in text boxes. I'm not worried about the third tab yet, just getting the second one to work right.
I've got the buttons, but I really didn't want to do the paging on the server. Doing that reloads the page and puts it back on the first tab, rathe ...

Go to the complete details ...