から接続を取得するには、経過タイムアウト時間:ASP - 前に、私は次のエラーでトラブルを抱えているプール
"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."
エラーは、次のコードブロックであると思われる:
da = new SqlDataAdapter(command);
command.CommandTimeout = 100;
da.Fill(dt);
conn.Close();
return dt;
おそらくコマンドと接続をusingステートメントで囲む必要があります。それはあなたの接続が漏れるのを助けることができます。 –