I'm creating a simple ajax call to retrieve a list of user reviews. I want to have my aspx page output the content for each review item as it is processed. For example, lets say I had 100 reviews to show, how would I send the markup as it processes on the server end? In PHP I can do this with the flush() or ob_flush() function. What is the .NET equilvalent?
A:
You can set Response.BufferOutput = false or you can call Response.Flush() to send the current buffered output.
Josh Einstein
2010-03-02 02:22:08
Perfect, thank you!
Matt
2010-03-02 02:28:32