Tag: 调用预览模式: 普通 | 列表

调用

论坛
引用内容 引用内容
 <table border=0 width='100%'>
<%
sql="select top 13 id,forum_id,topic from bbs_topic where forum_id<>999999999 order by id desc"
set rs=joekoe_cms.exec(sql,1)
do while not rs.eof
  id=rs("id")
  topic=rs("topic")
  response.write vbcrlf&"    <tr><td height='"&dim_num(6)&"' style='border-bottom:1px dotted #e0e0e0'>  <img src='/skin/"&joekoe_cms.web_skin&"/small/h_forum.gif' border=0 align=absMiddle> <a href='/forum/forum_view.asp?forum_id="&rs("forum_id")&"&view_id="&id&"' target=_blank alt='"&joekoe_cms.code_html(topic,1,0)&"'>"&joekoe_cms.code_html(topic,1,20)&"</a></td></tr>"
  rs.movenext
loop
rs.close
%>
    </table>


文章
引用内容 引用内容

 <table border=0 width='100%'><!--文章-->
<%
sql="select top 14 id,topic from article where hidden=1 order by id desc"
set rs=joekoe_cms.exec(sql,1)
do while not rs.eof
  id=rs("id")
  topic=rs("topic")
  response.write vbcrlf&"    <tr><td height='"&dim_num(6)&"' style='border-bottom:1px dotted #e0e0e0' ><img src='"&web_dim(6)&"skin/"&joekoe_cms.web_skin&"/small/h_article.gif' border=0 align=absMiddle> <a href='article/article_view.asp?id="&id&"' target=_blank alt='"&joekoe_cms.code_html(topic,1,0)&"'>"&joekoe_cms.code_html(topic,1,22)&"</a></td></tr>"
  rs.movenext
loop
rs.close
%>
    </table><!--文章结束-->

查看更多...

Tags: 调用

分类:Cms | 固定链接 | 评论: 8 | 引用: 0 | 查看次数: 860