By flushing HTML responses, the browser gets a jump start on downloading critical resources. It’s also pretty easy to do in ASP.NET.
// Buffer response so that page is sent // after processing is complete. Response.BufferOutput = true; ... // Send the output to the client. Response.Flush();
No comments :
Post a Comment