I have a SQL query that will return over 10,000 rows. Since the client only will view 12 rows at a time, how do I alter my SQL so that I can select just the needed rows?
My expectation is that I'll requery the database each time the user clicks on the grid. My solution is based on the demo below, however I'm trying to make this work with the "OrderDetail" table of northwind which doesn't have a clean/sequential ID value.
http://demos.telerik.com/aspnet-ajax/grid/examples/client/virtualscrollpaging/defaultcs.aspx
I'm using SQL Express in my local dev environment, but will use SQL 2008 in Production.