hi,
I have a list on SharePoint with several hundred items in it.  
I also have some code which will return items from that list,
this will work perfectly fine when it is returning values that are on the first page (items 1-100) but if the item i need to get is on another page in the list then it will return nothing.  
My question is how do I addess the list as a whole rather than each page?
EDIT:
I have a web service for  
http://[SharePoint site]/_vti_bin/Lists.asmx?op=GetListItems
then
    ListsWS.Lists lists = new ListWS.Lists();    
    XmlNode items = lists.GetListItems(listName, string.Empty, listQuery, listViewFields, string.Empty, listQueryOptions, null)
    return items;