0

I've a problem with Asp.net and SQL. I have many timeout errors from connection pool.

All connections are used within using block so they are correctly closed.
In the connectionSting I have : Pooling=true;Max Pool Size=250
System is Windows 2008 server, SQL Server 2008 , Asp.net

In application error log:

Event Id 1309
source : ASP.NET 2.0.50727.0 

Or

Event Id 9
source : Active Server Pages

Do you have any suggestions what I should do?

Jason Evans
  • 28,906
  • 14
  • 90
  • 154
Philippe
  • 415
  • 1
  • 4
  • 6
  • Timing out in the sense that you can't get a new connection? – Ann L. Nov 23 '12 at 09:55
  • Can you post a typical section of code so we can see how you're doing the `open` and what you're doing with the connection? – Ann L. Nov 23 '12 at 09:57

1 Answers1

0

Give Timeout in web.config with connection string. It works for me.

Hiral
  • 465
  • 3
  • 12