<%
bbsid=29
bbsname=conn1.execute("select bbsname from bbsconfig where id="&bbsid&"")(0)
if bbsname<>"" then
%>
<%
str2="select top 6 * from forum where forumid="&bbsid&" order by lasttime desc"
rs2.open str2,conn1,1,3
do while not rs2.eof
%>
<% for i=1 to 2
if len(rs2("topic"))>18 then
topic_name=left(rs2("topic"),18) & "……"
else
topic_name=left(rs2("topic"),18)
end if
%>
| " target="_blank" title="<%= rs2("topic") %>"><%=topic_name
%> |
<%
rs2.movenext
if rs2.eof then exit for
next
%>
<% loop
rs2.close%>
<% end if %>
|