求教The connection is already open.错误
请教高手
当我在IE中执行一个复杂数据库操作时(一般需要3分钟以上才能算完),关闭IE
然后再开一个新IE执行Conn.Open()连接数据库时系统报错:
应用程序中的服务器错误。
The connection is already open.
System.InvalidOperationException: The connection is already open.
MySqlCommand comm = new MySqlCommand(strSQL.ToLower(),Conn);
Conn.Open();
MySqlDataReader dr;
因为这边的应用是一个多人并行操作的Web系统,如何解决这种问题呢?