tuijian.asp
上传用户:xiao85513
上传日期:2010-01-11
资源大小:2160k
文件大小:2k
源码类别:

手机WAP编程

开发平台:

Java

  1. <!--#include file="conna.asp"-->
  2. <% Response.ContentType="text/vnd.wap.wml" %>
  3. <?xml version="1.0" encoding="gb2312"?>
  4. <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN"
  5.                      "http://www.wapforum.org/DTD/wml_1.1.xml">
  6. <wml>
  7. <head> <meta forua="true" http-equiv="Cache-Control" content="max-age=0"/> </head>
  8. <card id="forum" title="forum" newcontext="true">
  9. <p>
  10. <do type="prev" name="Prev" label="Back"><prev/></do>
  11. **推荐文章**<br/>
  12. <%
  13. ''=========================================================
  14. ''select top 10 recommanded poster of Herald Forum
  15. ''based on /wwwroot/html/xslt/index.asp   modified by Kevin
  16. ''=========================================================
  17. set rs=server.createobject("adodb.recordset")
  18. sql=" select top 10 t.TopicID,t.boardid,t.title,t.postusername,t.postuserid,t.dateandtime,t.hits,b.parentid,b.boardid from Topic t,board b where b.boardid=t.boardid and t.istop=1 and t.locktopic<>2 and t.boardid<>13 and t.boardid<>12 and t.boardid<>124 and b.parentid<>92 order by t.dateandtime desc"
  19. set rs=conn.execute(sql)
  20. do while not rs.eof
  21. set rs_herald=server.createobject("adodb.recordset")
  22. sql_herald="select boardtype from board where boardid=" & rs("boardid")
  23. set rs_herald=conn.execute(sql_herald)
  24. if not rs_herald.eof then
  25. response.write "∴"
  26. response.write "["
  27. response.write rs_herald("boardtype")
  28. response.write "]" 
  29. ''response.write rs("boardid") & "&id=" & rs("topicid") & ">"
  30. ''cyndi modify
  31. titles=rs("title")
  32. titles=replace(titles,"<","&lt;")
  33. titles=replace(titles,">","&gt;")
  34. response.write titles & "("
  35. response.write rs("postusername") & ")<br/>"
  36. end if
  37. rs.movenext
  38. set rs_herald=nothing
  39. loop
  40. rs.close
  41. set rs=nothing
  42. %>
  43. <b>* * * * * * * * *</b>
  44. <br/><a href="index.wml">返回论坛</a><br/>
  45. <br/><a href="http://herald.seu.edu.cn/ewap/index.wml">返回主页</a><br/>
  46. </p>
  47. </card>
  48. </wml>