I am working on SQL SERVER 2008 R2. In sql server table have contain upto 4 lac data. So i want to show data using table rows with jquery ajax. How to reduced time for show fastest data in asp.net ? Can i show 4 lac data in 2 seconds on asp.net webpage using jquery ajax ?
Any help will appreciate . Thank you
Wim SturkenboomPosted Oct 1, 2014, 4:45 AM
You want to retrieve a subset of e.g. 20 (or 100 or something else that is reasonable) records and each time a user requests a next (or previous) set of records, you retrieve those. For SQL server 2005/2008, check e.g http://stackoverflow.com/questions/971964/limit-10-20-in-sql-server how to do that.
Note that you have to implement the paging (next page, previous page, go to end) yourself.