Technical Information (for support personnel)
 Error Type:
ADODB.Recordset (0x800A0E7D)
The connection cannot be used to perform this operation. It is either closed or invalid in this context.
/Projack/Admin/store.asp, line 73
 Browser Type:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
 Page:
GET /Projack/Admin/store.asp
<select name="Group_id" size="1">
<%
Sql="Select * from TB_Group order by Group_id "
Set RS =Server.CreateObject("ADODB.Recordset")
RS.open Sql,Conn,1,3
rs.movefirst
do until rs.EOF
ggroup_id =( rs.fields("group_id"))
ggroup_name=(rs.fields("group_name"))
response.write"<option value="&ggroup_id&" > "&ggroup_name&" </option>"
rs.MoveNext
Loop
RS.Close
conn.Close
Set rs= Nothing
Set conn= Nothing