Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Response Buffer Limit Exceeded 1

Status
Not open for further replies.

jkelly2956

Programmer
Jul 31, 2002
37
US
I have a page that is returning a fairly large result set from a SQL call. Is there any way to set this higher in IIS 6.0 so that I can return the whole set without breaking it up.
 
response.buffer=false

at the top of your page might be a solution.
 
I have the same problem!

response.buffer=false

did not totally help me!

This time, it gives server.ScriptTimeout!

I set it as server.ScriptTimeout = 1000000

Tries to show the results more than 10 minutes...

Any help is appreciated!
 
If your script has still not finished after 10 minutes of processing then you either have an infinite loop in there somewhere, or you might want to think about returning a smaller results set.

What is your script actually doing? - some code would be helpful

BDC.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top