views:

79

answers:

0

Hi,

We have a very slow ASP.NET page with a repeater. It is slow because most of the processing is done in the ItemDataBound event of the repeater. All this processing just gets 2 totals to be shown in each row.

To increase the throughput, it could be a good idea to load the repeater without ItemDataBound event and without the 2 totals. Instead on loading the page in browser, AJAX calls can be made from each row and totals can be shown asyncronously.

Can you point to any code example where this kind of solution is achieved.

Thanks!