ASP.net response.buffer does not work when set to false

Qqeqmltydc

New Member
After upgrading from IIS 6 to IIS 7 I recieved the following error in my web browser (Safari and similar errors in other browsers): "cannot decode raw data". This error is temporarily fixed by changing:\[code\]response.buffer = false\[/code\]to\[code\]response.buffer = true\[/code\]I need to set this to "false" to in order to display files as they are generated instead of all at once (after a considerable amount of time). I have tried increasing the bufferingLimit in the ApplicationHost.config file, but I still get this error when response.buffer is set to "false". Does anyone know where this problem might be coming from?
 
Back
Top