Существует такая проблема нужно вывести на экран список групп а при нажатии на одну из них список пользователей в этой группе
Группа 1
Группа 2
Группа 3
Группа 1
Группа 2
---Пользователь 1
---Пользователь 2
---Пользователь 3
---Пользователь 4
Группа 3
При попытке открыть Recordset со списком пользователей выдаётся следующая ошибка:
The connection cannot be used to perform this operation. It is either closed or invalid in this context.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Runtime.InteropServices.COMException: The connection cannot be used to perform this operation. It is either closed or invalid in this context.
Source Error:
Line 27: Sub SpisokStud()
Line 28: Dim rs1 = Server.CreateObject("ADODB.Recordset")
Line 29: rs1.Open("select id,fallname,idGroup from tStud")
Line 30: While (Not rs1.eof)
Line 31: Response.Write("<p>" & rs1("fallname").value & "</p>")
Пожалуйста подскажите решение проблемы.