|
-
Apr 19th, 2005, 01:11 PM
#1
Thread Starter
Lively Member
Avoid Timeouts
Hello All,
Other than setting my executionTimeout to 300 and maxRequestLength to 204800. Is there anything else I can do to avoid timeout issues.
Below is what I added to my webconfig file.......
<httpRuntime
executionTimeout="300"
maxRequestLength="204800"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100"
/><!-- end of April 29 added code-->
Basically it only happens when I do a sql query that returns alot of results.
I'm not concerned about the sql side, as I'm trying to see what I can optimize
on the asp side. We have a sql guy to take care of that.
Any thoughts, help is appreciated.
-
Apr 20th, 2005, 03:25 AM
#2
Frenzied Member
Re: Avoid Timeouts
Would it make sense to implement some kind of paging so you don't need to return so many records to the browser?
DJ
If I have been helpful please rate my post. If I haven't tell me!
-
Apr 20th, 2005, 07:41 AM
#3
Thread Starter
Lively Member
Re: Avoid Timeouts
 Originally Posted by dj4uk
Would it make sense to implement some kind of paging so you don't need to return so many records to the browser?
DJ
Thanks, I was trying to avoid the paging (lazyness on my part), but it is good practice.
Thanks again, I will go with paging
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|