An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
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.
网址:www.cnepa.com
------解决方法--------------------------------------------------------
可能是没有关闭连接 Conn.Close()
------解决方法--------------------------------------------------------
是否使用oracle数据库,它对最大连接数有限制的
看一下数据库连接是否被耗尽,
是什么dbms,可以看到连接和日志吗
另外这是什么混账公司?
------解决方法--------------------------------------------------------
建议辞职,多憋气啊
把临时文件清一下,一班在这个目录下
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files
------解决方法--------------------------------------------------------
大部分是由于连接没有关闭造成的
*****************************************************************************
欢迎使用CSDN论坛阅读器 : CSDN Reader(附全部源代码)
http://www.cnblogs.com/feiyun0112/archive/2006/09/20/509783.html
------解决方法--------------------------------------------------------
连接要及进关闭!
------解决方法--------------------------------------------------------
参考:http://topic.csdn.net/t/20040511/15/3054600.html
------解决方法--------------------------------------------------------
注意查看一下连接是否没有关闭,另外,数据库是否有多个用户运行,最大连接支持多少。现在的问题应该是由连接池引起,原因是因为连接没有被关闭,或者连接池连接数设定的过小
------解决方法--------------------------------------------------------
对
这个问题我遇见过,就是你的连接数得到了最大值.
你可以改一下程序,设的连接数大一些,另外就是用过的链接及时关闭.
------解决方法--------------------------------------------------------
晕都没写关闭,当然出错了
------解决方法--------------------------------------------------------
SqlConnection con=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings[ "ConnectionString "]);