Currently, I\'m using a strategy found on many blog posts. Basically, the URL contains the page number (e.g. /Users/List/5 will give you the users on page 5 of your paged list
If you use query parameters then the page links in each list have to know about each other in-order to pass both parameters.
If the two lists are independent of each other then you can update them individually using jquery & ajax. Simply place each list in their own div as a partial view.
<%= Html.RenderPartial ("ListA") %>
<%= Html.RenderPartial ("ListB") %>
Lookup ajaxSubmit from the jQuery Form plugin for an easy way to update the lists.