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

手机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. <wml><%
  6. '====================================================================
  7. ' 请你保留这段说明,这并不会影响你的速度.   电脑交流:http://www.cnscu.cn
  8. ' 程序制作:横云   掌上校园收倾心整理收集于互联网,感谢你的支持!
  9. ' 升级时间: 2008-2-5   主页地址:HTTP://wap.cnscu.cn
  10. ' E-Mail: cnscu@126.com    客服QQ:554904632 QQ群:30493504 QQ群2:46659883
  11. '====================================================================
  12. %> <!--#include file="conn.inc"-->
  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="card1" title="所有回复">
  19. <p>
  20. <!--#include file="cnscucsb.asp"-->
  21. <!--#include file="xxts.asp"-->
  22. <%
  23. dim id,page
  24. tid=request.QueryString("tid")
  25. ltid=request.QueryString("ltid")
  26. if tid="" then tid="0"
  27. page=cint(request.QueryString("page"))
  28. if page="" or page<1 then page=1
  29. set rsxl=Server.CreateObject("ADODB.Recordset")
  30. rspl="select * from lthf where CStr(tid)='"&tid&"' order by htm desc"
  31. rsxl.open rspl,conn,1,2
  32. if rsxl.eof then
  33.    Response.write "暂无回复!"
  34. Else
  35. maxpage=cint((rsxl.recordcount-1)/10)+1
  36. if page>maxpage then page=maxpage
  37. rsxl.Move((page-1)*10)
  38. j=1
  39. k=rsxl.recordcount
  40. do while ((not rsxl.EOF) and j<=10)
  41. y=Month(rsxl("htm"))&"" 
  42. r=Day(rsxl("htm"))&"" 
  43. if len(r)=1 then r="0"&r
  44. h=hour(rsxl("htm"))&"" 
  45. if len(h)=1 then h="0"&h
  46. m=minute(rsxl("htm"))&"" 
  47. if len(m)=1 then m="0"&m
  48. tt="" & y & "-" & r &" " & h &":" & m &""
  49. tzbt=left(rsxl("nr"),200)
  50. if len(rsxl("nr"))>200 then
  51. tzbt=tzbt+"。。"
  52. end if
  53. %>
  54. <a href='pl_view.asp?cnscu=<%=cnscu%>&amp;id=<%=ubb(rsxl("id"))%>'><%=(k-(page-1)*10)%><!--%=((page-1)*10+j)%--></a>.<a href='gr_zl.asp?cnscu=<%=cnscu%>&amp;id=<%=ubb(rsxl("fid"))%>'><%=ubb(rsxl("fni"))%></a>:<%=ubb(tzbt)%>(<%=tt%>)<br/>
  55. <%
  56. rsxl.Movenext  
  57. j=j+1
  58. k=k-1
  59. loop
  60. end if
  61. if page*10<rsxl.recordcount then response.write("<a href='hf_view.asp?cnscu=" & cnscu & "&amp;ltid=" & ltid & "&amp;tid=" & tid & "&amp;page=" & page+1 & "'>下一页</a>")
  62. if page>1 then response.write("|<a href='hf_view.asp?cnscu=" & cnscu & "&amp;ltid=" & ltid & "&amp;tid=" & tid & "&amp;page=" & page-1 & "'>上一页</a>")
  63. if page*10<rsxl.recordcount or page>1 then response.write("<br/>")
  64. response.write("(第"& page & "/" & (int((rsxl.recordcount-1)/10)+1) &"页/共" & rsxl.recordcount & "条)<br/>")
  65. %>
  66. <%if page*10<rsxl.recordcount or page>1 then%>
  67. 跳到第<input name="gpage<%=minute(now)%><%=second(now)%>" title="页码" type="text" format="*N" emptyok="true" size="3" value="<%response.write(page+1)%>" maxlength="3"/>页
  68. <anchor>[GO]
  69.     <go href="hf_view.asp?cnscu=<%=cnscu%>&amp;tid=<%=tid%>&amp;ltid=<%=ltid%>" accept-charset='utf-8'>
  70.         <postfield name="page" value="$(gpage<%=minute(now)%><%=second(now)%>)"/>
  71.     </go>
  72. </anchor><br/>
  73. <%end if%>
  74. <input name="dgly" emptyok="true" maxlength="100" value="不错!"/><br/>
  75. <anchor title="快速回复">[快速回复]
  76. <go href="kshf.asp?tid=<%=tid%>&amp;cnscu=<%=cnscu%>" method="post" accept-charset='utf-8'>
  77. <postfield name="dgly" value="$(dgly)"/></go>
  78. </anchor><br/>
  79. <%
  80. rsxl.close
  81. set rsxl=nothing
  82. %>
  83. **********<br/>
  84. <a href='lt_list.asp?cnscu=<%=cnscu%>&amp;ltid=<%=ltid%>'>回到论坛</a><br/>
  85. <!--#include file="w.asp"-->
  86. </p>
  87. </card>
  88. </wml> 
  89. <%
  90. conn.close
  91. set conn=nothing
  92. %>