Message: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.
views:
12answers:
1
A:
I had this issue on my live website with millions of users.
I found two solutions and both worked for me.
1)Immediate solution:set Pooling=false in connection string.
2)Later I closed all connections in my code and set Pooling=true.
Dee
2010-09-16 11:22:03