asp超出响应缓冲区限制

asp超出响应缓冲区限制

本文介绍了asp超出响应缓冲区限制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我们正在使用经典的ASP应用程序.当我使用Response.ContentType ="application/pdf"将6.41MB的pdf数据写入Internet Explorer时遇到错误response.BinaryWrite rs(列名").

数据可在数据库的longblob列中找到.请帮助纠正此问题.请我有需要.

错误的详细信息在下面给出.

错误''ASP 0251:80004005''
超出响应缓冲区限制
/admin/loadpdf.asp,第21行
ASP页的执行导致响应缓冲区超过其配置的限制.


Hi,

We are using classic asp application. i encountered an error when i am writing the pdf data which is of 6.41MB to the internet explorer by using Response.ContentType = "application/pdf"
response.BinaryWrite rs("column name").

The data is available in database in longblob column. Please help to rectify this problem. Please i am in need.

The details of the error are given below.

error ''ASP 0251 : 80004005''
Response Buffer Limit Exceeded
/admin/loadpdf.asp, line 21
Execution of the ASP page caused the Response Buffer to exceed its configured limit.


please, please help me.

推荐答案

<%@Language="VBScript"%>

添加:

<%Response.Buffer = False%>


希望对您有所帮助.


I hope this helps.



这篇关于asp超出响应缓冲区限制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 21:29