|
| |
| |
|
<% call ShowSmallClass_Tree() %>
|
|
| |
| |
<%
set rs_links=server.createobject("adodb.recordset")
sqltext4="select top 10 * from links order by id desc"
rs_links.open sqltext4,conn,1,1
%>
 |
<%i=0
do while not rs_links.eof%>
| |
<% rs_links.movenext
i=i+1
if i=10 then exit do
loop
rs_links.close %>
 |
|
|
|
|
 |
|