tags:

views:

26

answers:

1

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
Perfect, thank you!
Matt