Friday, March 6, 2009

Don't forget to FLUSH!

JSP:
<% response.flushBuffer(); %>


PHP:
<?php flush(); ?>


Ruby:
$stdout.flush


ASP:

Response.Flush
If you use this, don't forget to set Response.Buffer = True


Python:
sys.stdout.flush()

No comments: