The timeout period elapsed prior to obtaining a connection from the pool.
遇到这种错误信息, 一般是自己忘记了关闭SqlConnection所致, 也叫SQL Connection Leak.
下面的代码说明了这个问题.
using System;
using System.Collections.Generic;
using System.Text;
using System.Data.SqlClient;
using System;