I am trying to use an update panel together with a gridview, but I am having some difficulties sorting the gridview. I tried to follow @dfowler in this thread
But when I try to sort I get this error when trying to databind the sorted list:
“The data source does not support server-side data paging.”
Anyone having some clue what I do wrong?
I found the error. When I first databinded to the gridview I used a List, but when I tried to rebind I used IQueryable instead, so a simple .ToList() worked 🙂