|
|
<%
set rslb = Server.CreateObject("ADODB.Recordset")
rslb.ActiveConnection = MM_conn_STRING
rslb.Source ="select * from place_newslb where access='"&request.QueryString("access")&"'"
rslb.CursorType = 1
rslb.CursorLocation = 2
rslb.LockType = 3
rslb.Open()
while not rslb.eof
%>
|
|
|
|
|
|
|
| <%
rslb.movenext
wend
%>
|
|