28,408
社区成员
发帖
与我相关
我的任务
分享
<%
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%>