|
|
|
|
|
|
|
|
(2009年8月24日~26日) |
<%
Set rsb = Server.CreateObject ("ADODB.Recordset")
sqlb="select * from article_class where unid in (37,38) order by orderflag asc,unid asc"
rsb.Open sqlb,conn, 1
do while not rsb.eof
%>
|
|
<%=rsb("classname")%> |
|
<%
sql="Select unid,didian,title,intime From article_info where nclassid="&rsb("unid")&" and flag=0 order by hits desc,unid desc"
Set rs = Server.CreateObject("adodb.recordset")
rs.Open sql,conn,1,1
If rs.EOF and rs.BOF Then
%>
暂无记录
<%Else%>
<%rs.close:end if%>
|
|
|
<%
rsb.movenext
loop
rsb.close
%>
|
|
|
|
|
|
|
|
|
<%=showcontent(4)%>
|
|
|
|
|