28,376
社区成员




<%
s = ""
Set db = conn.Execute("select top 5 * from [flash] order by px_id asc")
Do While Not db.EOF
s = s & "<li><a href='" & db("link") & "'><img src='" & db("img") & "' width='1003' height='360' /></a></li>" & VBCrLf
db.MoveNext
Loop
db.Close
conn.Close
Set db = Nothing
Set Conn = Nothing
Response.Write s
%>