I am using an Excel style grid to display a data set with filtering, sorting and paging from a SQLdatasource.
I call Grid.DataBind() when a Dropdownlist selection is changed.
When the data set gets too big, I get an Out Of Memory Exception (about 50,000 records) and the grid fails.
I believe I need to use server side paging, but I cannot find any documentation on how to convert to Server side for ASP.net Web Forms.
Am I on the right track to use server side events?
Can you provide any examples of using server sided events on a grid in ASP.net Web Forms?