I have a list in SharePoint with several hundred items in it.
I also have code that will return elements from this list,
this will work fine when it returns the values ββthat are on the first page (paragraphs 1-100), but if the element I need to get is on another page in list, it will not return anything.
My question is how to add a list as a whole, and not every page?
EDIT:
I have a web service for
http:
then
ListsWS.Lists lists = new ListWS.Lists();
XmlNode items = lists.GetListItems(listName, string.Empty, listQuery, listViewFields, string.Empty, listQueryOptions, null)
return items;
source
share