ckpl.asp
上传用户:sking1122
上传日期:2020-09-24
资源大小:1005k
文件大小:2k
源码类别:

手机WAP编程

开发平台:

ASP/ASPX

  1. <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%><?xml version="1.0" encoding="utf-8"?>
  2. <%response.buffer=true%>
  3. <%Response.ContentType = "text/vnd.wap.wml; charset=utf-8"%>
  4. <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
  5. <!--#include file="conn.inc"-->
  6. <wml><%
  7. '====================================================================
  8. ' 请你保留这段说明,这并不会影响你的速度.   电脑交流:http://www.cnscu.cn
  9. ' 程序制作:横云   掌上校园收倾心整理收集于互联网,感谢你的支持!
  10. ' 升级时间: 2008-2-5   主页地址:HTTP://wap.cnscu.cn
  11. ' E-Mail: cnscu@126.com    客服QQ:554904632 QQ群:30493504 QQ群2:46659883
  12. '====================================================================
  13. %> <head>
  14. <meta http-equiv="Cache-Control" content="no-Cache"/>
  15. <meta http-equiv="Cache-Control" content="max-age=0"/>
  16. <meta http-equiv="Expires" content="Mon, 1 Jan 1990 00:00:00 GMT"/>
  17. </head>
  18. <card id="main" title="查看评论">
  19. <p>
  20. <%
  21. id=usb(request("id"))
  22. if id="" then id="0"
  23. set rs=Server.CreateObject("ADODB.Recordset")
  24. rsppl="select * from wap_pl where lid<>0 and lid="&id&" order by tm desc"
  25. rs.open rsppl,conn,1,2
  26. if rs.eof then 
  27. response.write("暂时没有评论<br/>")
  28. else%>
  29. <%rs.Move(0)
  30. dim j
  31. j=1
  32. do while ((not rs.EOF) and j <=500000)%>
  33. <%=j%>.<%=usb(rs("name"))%>说:<%=usb(rs("txt"))%>[<%=usb(rs("tm"))%>]<br/>
  34. <%
  35. rs.MoveNext
  36. j=j+1
  37. loop
  38. end if%>
  39. <a href="view.asp?id=<%=id%>">返回文章</a>
  40. <br/><!--#include file="w.asp"-->
  41. </p></card></wml>