gg_view.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. <!--#include file="cnscucsb.asp"--><%
  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. %> <%
  14. dim id
  15. id=request.QueryString("id")
  16. set npp=Server.CreateObject("ADODB.Recordset")
  17. rspl="select * from cnscu_gg where id="&id
  18. npp.open rspl,conn,1,2
  19. name=npp("name")
  20. txt=ubb2(npp("txt"))
  21. fbtm=npp("tm")
  22. npp.close
  23. set npp=nothing
  24. %>
  25. <wml>
  26. <head><meta http-equiv='Cache-Control' content='no-cache'/>
  27. </head>
  28. <card title="<%=name%>">
  29. <p>
  30. <b>标题:<%=name%></b><br/>
  31. 内容:<%=txt%><br/>
  32. 时间:<%=fbtm%><br/>
  33. [本公告为论坛系统公告,发布人为本站站长,如有任何问题请与论坛ID:1联系]<br/>
  34. --------<br/>
  35. <%
  36. dim idd
  37. idd=clng(id+1)
  38. set nppx=Server.CreateObject("ADODB.Recordset")
  39. rsplx="select * from cnscu_gg where id="&idd
  40. nppx.open rsplx,conn,1,2
  41.    Response.write "下一条:"
  42. if nppx.eof then
  43.    Response.write "已经没有了!<br/>"
  44. Else
  45. namex=nppx("name")
  46. Response.write "<a href='gg_view.asp?id="& idd &"&amp;cnscu="&cnscu&"'>"& namex &"</a><br/>"
  47. nppx.close
  48. set nppx=nothing
  49. %>
  50. <%end if%>
  51. <%
  52. dim sidd
  53. sidd=clng(id-1)
  54. set npps=Server.CreateObject("ADODB.Recordset")
  55. rspls="select * from cnscu_gg where id="&sidd
  56. npps.open rspls,conn,1,2
  57.    Response.write "上一条:"
  58. if npps.eof then
  59.    Response.write "已经没有了!<br/>"
  60. Else
  61. names=npps("name")
  62. Response.write "<a href='gg_view.asp?id="& sidd &"&amp;cnscu="&cnscu&"'>"& names &"</a><br/>"
  63. npps.close
  64. set npps=nothing
  65. %>
  66. <%end if%>
  67. <a href="gg_index.asp?cnscu=<%=cnscu%>">更多公告...</a><br/>
  68. <!--#include file="w.asp"-->
  69. <%
  70. conn.close
  71. set conn=nothing
  72. %>
  73. </p>
  74. </card>
  75. </wml>