This topic is locked
[SOLVED]

 Response Buffer Limit Exceeded

10/10/2005 3:35:14 PM
ASPRunnerPro General questions
Alberto author

Hello: we are getting this error in one of our screens.
Response object error 'ASP 0251 : 80004005'

Response Buffer Limit Exceeded

/prod/Consultas/vwEstadoDePagoPorContrato_list.asp, line 0

Execution of the ASP page caused the Response Buffer to exceed its configured limit.
How could we solve this problem? all other work ok but this screen.

  1. Can we do it w/no buffer? or
  2. Can we increase the buffer or something like that? or
  3. Can we flush the buffer after certain number of records or so?
    what is better and if posible how can we achieve it showing this screen.
    Thank you.

admin 10/11/2005

Alberto,
try the following: find this line in vwEstadoDePagoPorContrato_list.asp file
DO UNTIL rs.eof OR iNumberOfRows>=nPageSize
and insert this line
response.flush
right after it.

Alberto author 10/11/2005

Sergey,
It solved the problem and worked OK
Thanks a lot