Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Response.Buffer / Flush Doesn't Appear to be Working

I've got a classic asp page that users Response.Buffer = True and Flush. On my local pc this page works absolutely fine.

I've uploaded the page to my web server and it doesn't work. The only thing I've been able to check is in IIS under ASP/Behaviour/Enable Buffering is True on both machines.

On the web server the script runs with a blank page for about 4 secs and then displays the page, ignoring the buffering code.

Is there any other setting that would prevent a script from buffering.

like image 763
John Moore Avatar asked Feb 16 '26 10:02

John Moore


1 Answers

I'll often use Response.Flush before I enter the loop and on [recordset].AbsolutePosition Mod 1000 = 0 just to keep things moving.

like image 182
CLaFarge Avatar answered Feb 19 '26 23:02

CLaFarge