I am using ASP.NET and SQL Server. I would like to load data from database asynchronously and show data which are partially loaded immediately.
Suppose there are tons of records in a query result. After 3 sec,It loads 20% then I have to process and show 20% data immediately, not waiting for complete response. I know $.Ajax in jQuery to load data async. Is it possible to process partial response, Not wait for complete response and show it immediately.
Is there any way to get this?