Response object error 'ASP 0251 : 80004005' Response Buffer Limit Exceeded
Execution of the ASP page caused the Response Buffer to exceed its configured limit.
The reason this is happening is because the IIS 6 cannot handle the large response.
To solve this problem:
- Edit the metabase.xml to increase the AspBufferingLimit value that usually is 4194304 (bytes, that means 4Mb)
- Before you edit the file on ISS right click the server and check the box "Enable Direct Metabase Edit"
- The file is located %SYSTEMROOT%\system32\inetsrv
- Use Response.Flush in your code to send blocks of data to the browser
- At the top of the page response.buffer = true in your asp code