28,409
社区成员




<%
Set rs = Server.CreateObject("ADODB.Recordset")
sql="select * from Magazine where smallClassName='01' AND bigclassname=2008"
rs.open sql,conn,1,3
%>
<%If not rs.eof then%>
<%=rs("Title")%>
<%=rs("Content")%>
<%rs.close
set rs=nothing%>
<%End if%>