Response Buffer Limit Exceeded

后端 未结 11 1284
没有蜡笔的小新
没有蜡笔的小新 2020-12-08 10:05

I am running a simple query to get data out of my database & display them. I\'m getting an error that says Response Buffer Limit Exceeded.

11条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-08 10:14

    I rectified the error 'ASP 0251 : 80004005' Response Buffer Limit as follow:

    To increase the buffering limit in IIS 6, follow these steps:

    Click Start, click Run, type cmd, and then click OK. Type the following command, and then press ENTER: cd /d %systemdrive%\inetpub\adminscripts Type the following command, and then press ENTER: cscript.exe adsutil.vbs SET w3svc/aspbufferinglimit LimitSize Note LimitSize represents the buffering limit size in bytes. For example, the number 67108864 sets the buffering limit size to 64 MB. To confirm that the buffer limit is set correctly, follow these steps:

    Click Start, click Run, type cmd, and then click OK. Type the following command, and then press ENTER: cd /d %systemdrive%\inetpub\adminscripts Type the following command, and then press ENTER: cscript.exe adsutil.vbs GET w3svc/aspbufferinglimit

    refers to https://support.microsoft.com/en-us/kb/944886

提交回复
热议问题