I am trying to paginate a gridview that has been loaded with IEnumerable object a datasource, i have the following error message: the data source does not support server-side data paging
I am not using ObjectDatasource, i populate the gridview with code behind like this:
Gridview.Datasource = MyDataSource;
Gridview.Databind();
MyDatasarce is a IEnumarable list of object. i am using visual studio 2015 and C# 7