Progressively stream the output of an ASP.NET page - or render a page outside of an HTTP request
- by Evgeny
I have an ASP.NET 2.0 page with many repeating blocks, including a third-party server-side control (so it's not just plain HTML). Each is quite expensive to generate, in terms of both CPU and RAM. I'm currently using a standard Repeater control for this.
There are two problems with this simple approach:
The entire page must be rendered before…