1
Answer

exception error

Navaz

Navaz

11y
772
1
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.
Answers (1)
0
Iftikar Hussain

Iftikar Hussain

NA 18.9k 275.5k 11y
Hi,
        You need to increase the timeout for sql operation.

Try adding a Connect Timeout in the web.config
<add key="DBConnection" value="server=LocalHost;uid=sa;pwd=;database=DataBaseName;Connect Timeout=200; pooling='true'; Max Pool Size=200"/>

Regards,
Iftikar
Accepted