jav
Posts: 8
|
| Posted: 11/01/2007, 6:24 AM |
|
I am trying to export to excel using the
Response.ContentType = "application/vnd.ms-excel"
Command and it kept on failing. I then turned off the excel portion and received the following error:
Response object error 'ASP 0251 : 80004005'
Response Buffer Limit Exceeded
/businesslicense/BranchExport.asp, line 0
Execution of the ASP page caused the Response Buffer to exceed its configured limit.
I previously was receiving timeout issues and followed peterr's solution mentioned on the following post
http://forums.codecharge.com/posts.php?post_id=54144&s_...r.ScriptTimeout+
And now I am receiving the new error noted above. I searched in other general asp forums and it said to try placing a 'Response.Buffer = False' in the code. I tried that and it didn't work. Other posts mentioned placing a 'Response.Flush' in the code, but I would have no idea where to place that. I also do not have access to modify the web server directly.
The table I am trying to export has about 4,000 records with around 20 columns. I am using CCS 3.1.1.0. Any help would be appreciated.
Thanks.
Jon
|
 |
 |
peterr
Posts: 5971
|
| Posted: 11/01/2007, 10:18 AM |
|
This looks like some Web server limitation or configuration issue, as this is definitely not a CCS error message. The first place I'd look would be here: http://www.google.com/search?q=%22Response+Buffer+Limit+Exceeded%22
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com |
 |
 |
jav
Posts: 8
|
| Posted: 11/01/2007, 11:05 AM |
|
One of the common threads of the discussions under that subject is that the buffer grows too big. Since I have no access to change any of the internal settings of our webserver, the various forums suggest having the software that is sending the information to break up the buffers through the response.flush and similar commands. How can I have codecharge build the file in pieces (splitting up the buffer) instead of sending it all in one chunk? Any help would be appreciated.
Jon
|
 |
 |
|