<%
Dim ggrs
Dim ggrs_numRowsSet ggrs = Server.CreateObject("ADODB.Recordset")
ggrs.ActiveConnection = MM_conn_STRING
ggrs.Source = "SELECT id, txt FROM gonggao ORDER BY id ASC"
ggrs.CursorType = 0
ggrs.CursorLocation = 2
ggrs.LockType = 1
ggrs.Open()
ggrs_numRows = 0
%>
请问这段程序是什么意思,谢谢 !