2

In ASP.NET application, while using Crystal Reports (using the Report Viewer control), the report is visible (or the data in the report) only after the complete data is bound to the report source. If the data is too huge (spanning 50 or hundreds of pages), the data binding takes a while. Can there be some technique to better the perceived speed by making the first page data visible as the data for the first page is bound? The rest of the data can be bound by the time the user sees the first page.

Kangkan
  • 15,267
  • 10
  • 70
  • 113

1 Answers1

0

paginate the sql query for resultset to bind first page only to the report.

http://josephlindsay.com/archives/2005/05/27/paging-results-in-ms-sql-server/

Nitin Sawant
  • 7,278
  • 9
  • 52
  • 98
  • I am not sure, one can use paging with crystal reports. Does crystal report bring in the next pages of results from database automatically? If not, how can one automate this? – Kangkan Jul 12 '11 at 10:44
  • hmm, user have to click on controls outside the report – Nitin Sawant Jul 12 '11 at 10:54
  • So this is not in any way comes closer to the possible answer for the post. You may please edit the same. – Kangkan Jul 12 '11 at 11:55