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

手机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="cnscu_sb.asp"-->
  7. <wml><%
  8. '====================================================================
  9. ' 请你保留这段说明,这并不会影响你的速度.   电脑交流:http://www.cnscu.cn
  10. ' 程序制作:横云   掌上校园收倾心整理收集于互联网,感谢你的支持!
  11. ' 升级时间: 2008-2-5   主页地址:HTTP://wap.cnscu.cn
  12. ' E-Mail: cnscu@126.com    客服QQ:554904632 QQ群:30493504 QQ群2:46659883
  13. '====================================================================
  14. %> <head>
  15. <meta http-equiv="Cache-Control" content="no-Cache"/>
  16. <meta http-equiv="Cache-Control" content="max-age=0"/>
  17. <meta http-equiv="Expires" content="Mon, 1 Jan 1990 00:00:00 GMT"/>
  18. </head>
  19. <%id=usb(request("id"))
  20. if id="" then id="99999999999999"
  21. fid=usb(request("fid"))
  22. cz=usb(request("cz"))
  23. if cz="1" then nnnn="解除精华"
  24. if cz="2" then nnnn="设为精华"
  25. if cz="3" then nnnn="解除封锁"
  26. if cz="4" then nnnn="封锁帖子"
  27. if cz="5" then nnnn="置顶帖子"
  28. if cz="6" then nnnn="解除置顶"
  29. if cz="7" then nnnn="删除帖子"
  30. if cz="8" then nnnn="删除成功"
  31. if cz="9" then nnnn="加黑作者"
  32. if cz="10" then nnnn="加黑成功"
  33. if cz="11" then nnnn="清除作者发帖"
  34. if cz="12" then nnnn="清除成功"
  35. if cz="13" then nnnn="批量封锁作者发帖"
  36. if cz="14" then nnnn="批量封锁成功"
  37. if cz="15" then nnnn="批量解锁作者发帖"
  38. if cz="16" then nnnn="批量解锁成功"
  39. if cz="17" then nnnn="解黑作者"
  40. if cz="18" then nnnn="解黑成功"
  41. if cz="19" then nnnn="设为总版"
  42. if cz="20" then nnnn="设置总版成功"
  43. if cz="21" then nnnn="设为巡查员"
  44. if cz="22" then nnnn="巡查员设置成功"
  45. if cz="19" then nnnn="撤除总版"
  46. if cz="20" then nnnn="撤除总版成功"
  47. if cz="21" then nnnn="撤除巡查员"
  48. if cz="22" then nnnn="撤除员设置成功"
  49. %>
  50. <card id="main" title="<%=nnnn%>" >
  51. <p>
  52. <%set rs=Server.CreateObject("ADODB.Recordset")
  53. rspl="select * from lttz where id="&id
  54. rs.open rspl,conn,1,2
  55. if rs.eof then
  56. response.write("没有该帖子!<a href='http://wap.cnscu.cn'>掌上校园</a>收集整理cnscu.cn!<br/>")
  57. else%>
  58. <%if cz="1" then%>
  59. <%
  60. sql="update lttz set jj=0 where cstr(id)="&id
  61.   conn.Execute(sql)
  62. %>
  63. 解除精华成功。。
  64. <%elseif cz="2" then%>
  65. <%
  66. sql="update lttz set jj=1 where cstr(id)="&id
  67.   conn.Execute(sql)
  68. %>
  69. 设为精华成功。。
  70. <%elseif cz="3" then%>
  71. <%
  72. sql="update lttz set st=0 where cstr(id)="&id
  73.   conn.Execute(sql)
  74. %>
  75. 解除封锁成功。。
  76. <%elseif cz="4" then%>
  77. <%
  78. sql="update lttz set st=1 where cstr(id)="&id
  79.   conn.Execute(sql)
  80. %>
  81. 封锁帖子成功。。
  82. <%elseif cz="5" then%>
  83. <%
  84. sql="update lttz set dgtm='2100-10-10 12:12:12' where cstr(id)="&id
  85.   conn.Execute(sql)
  86. %>
  87. 置顶帖子成功。。
  88. <%elseif cz="6" then%>
  89. <%
  90. sql="update lttz set dgtm=now() where cstr(id)="&id
  91.   conn.Execute(sql)
  92. %>
  93. 解除置顶成功。。
  94. <%elseif cz="7" then%>
  95. 删除帖子
  96. <a href="zttz.asp?sb=<%=sb%>&amp;id=<%=usb(id)%>&amp;cz=8">确定</a>|<a href="tz_gl.asp?sb=<%=sb%>&amp;id=<%=usb(id)%>">取消</a>
  97. <%elseif cz="8" then%>
  98. <%
  99. sql="delete from lttz Where CStr(id)='" & id & "'"
  100.   conn.Execute(sql)
  101. sql="delete from mtjl Where CStr(tid)='" & id & "'"
  102.   conn.Execute(sql)
  103. sql="delete from lthf Where CStr(tid)='" & id & "'"
  104.   conn.Execute(sql)
  105. %>
  106. 删除成功成功。。
  107. <%end if%>
  108. <%end if%>
  109. <%if cz="9" then%>
  110. 加黑作者
  111. <a href="zttz.asp?sb=<%=sb%>&amp;fid=<%=usb(fid)%>&amp;id=<%=usb(id)%>&amp;cz=10">确定</a>|<a href="tz_gl.asp?sb=<%=sb%>&amp;id=<%=usb(id)%>">取消</a>
  112. <%elseif cz="10" then%>
  113. 加黑成功成功。。
  114. <%
  115. sql="update cnscu_gr set grzt=2 where cstr(id)="&fid
  116.   conn.Execute(sql)
  117. %>
  118. <%elseif cz="11" then%>
  119. 清除作者发帖
  120. <a href="zttz.asp?sb=<%=sb%>&amp;id=<%=usb(id)%>&amp;fid=<%=usb(fid)%>&amp;cz=12">确定</a>|<a href="tz_gl.asp?sb=<%=sb%>&amp;id=<%=usb(id)%>">取消</a>
  121. <br/>
  122. 注意:一次清除的话卖帖记录与回复记录不会删除!<br/>
  123. 建议使用删除功能!
  124. <%elseif cz="12" then%>
  125. <%
  126. sql="delete from lttz Where CStr(fid)='" & fid & "'"
  127.   conn.Execute(sql)
  128. %>
  129. 清除成功。。
  130. <%elseif cz="13" then%>
  131. 批量封锁作者发帖
  132. <a href="zttz.asp?sb=<%=sb%>&amp;id=<%=usb(id)%>&amp;fid=<%=usb(fid)%>&amp;cz=14">确定</a>|<a href="tz_gl.asp?sb=<%=sb%>&amp;id=<%=usb(id)%>">取消</a>
  133. <br/>
  134. <%elseif cz="14" then%>
  135. <%
  136. sql="update lttz set st=1 where cstr(fid)='" & fid & "'"
  137.   conn.Execute(sql)
  138. %>
  139. 批量封锁成功。。
  140. <%elseif cz="15" then%>
  141. 批量封锁作者发帖
  142. <a href="zttz.asp?sb=<%=sb%>&amp;id=<%=usb(id)%>&amp;fid=<%=usb(fid)%>&amp;cz=16">确定</a>|<a href="tz_gl.asp?sb=<%=sb%>&amp;id=<%=usb(id)%>">取消</a>
  143. <br/>
  144. <%elseif cz="16" then%>
  145. <%
  146. sql="update lttz set st=0 where cstr(fid)='" & fid & "'"
  147.   conn.Execute(sql)
  148. %>
  149. 批量解锁成功。。
  150. <%elseif cz="17" then%>
  151. 解黑会员
  152. <a href="zttz.asp?sb=<%=sb%>&amp;fid=<%=usb(fid)%>&amp;id=<%=usb(id)%>&amp;cz=18">确定</a>|<a href="tz_gl.asp?sb=<%=sb%>&amp;id=<%=usb(id)%>">取消</a>
  153. <%elseif cz="18" then%>
  154. 解黑成功成功。。
  155. <%
  156. sql="update cnscu_gr set grzt=0 where cstr(id)="&fid
  157.   conn.Execute(sql)
  158. %>
  159. <%elseif cz="19" then%>
  160. 设置为总版
  161. <a href="zttz.asp?sb=<%=sb%>&amp;fid=<%=usb(fid)%>&amp;id=<%=usb(id)%>&amp;cz=20">确定</a>|<a href="tz_gl.asp?sb=<%=sb%>&amp;id=<%=usb(id)%>">取消</a>
  162. <%elseif cz="20" then%>
  163. 设置总版成功。。
  164. <%
  165. sql="update cnscu_gr set ltzj=1 where cstr(id)="&fid
  166.   conn.Execute(sql)
  167. %>
  168. <%elseif cz="21" then%>
  169. 设置为巡查员
  170. <a href="zttz.asp?sb=<%=sb%>&amp;fid=<%=usb(fid)%>&amp;id=<%=usb(id)%>&amp;cz=22">确定</a>|<a href="tz_gl.asp?sb=<%=sb%>&amp;id=<%=usb(id)%>">取消</a>
  171. <%elseif cz="22" then%>
  172. 设置巡查员成功。。
  173. <%
  174. sql="update cnscu_gr set ltxcy=1 where cstr(id)="&fid
  175.   conn.Execute(sql)
  176. %>
  177. <%elseif cz="23" then%>
  178. 撤除总版
  179. <a href="zttz.asp?sb=<%=sb%>&amp;fid=<%=usb(fid)%>&amp;id=<%=usb(id)%>&amp;cz=24">确定</a>|<a href="tz_gl.asp?sb=<%=sb%>&amp;id=<%=usb(id)%>">取消</a>
  180. <%elseif cz="24" then%>
  181. 撤除总版成功。。
  182. <%
  183. sql="update cnscu_gr set ltzj=0 where cstr(id)="&fid
  184.   conn.Execute(sql)
  185. %>
  186. <%elseif cz="25" then%>
  187. 撤除巡查员
  188. <a href="zttz.asp?sb=<%=sb%>&amp;fid=<%=usb(fid)%>&amp;id=<%=usb(id)%>&amp;cz=26">确定</a>|<a href="tz_gl.asp?sb=<%=sb%>&amp;id=<%=usb(id)%>">取消</a>
  189. <%elseif cz="26" then%>
  190. 撤除巡查员成功。。
  191. <%
  192. sql="update cnscu_gr set ltxcy=0 where cstr(id)="&fid
  193.   conn.Execute(sql)
  194. %>
  195. <%else%>
  196. ^_^!出错了请到<a href="http://wap.cnscu.cn">校园</a>交流
  197. <%end if%>
  198. <br/>------------
  199. <br/><a href="tzgl.asp?fs=<%=fs%>&amp;sb=<%=sb%>">返回帖子管理</a><br/>
  200. <a href="admin_index.asp?fs=<%=fs%>&amp;sb=<%=sb%>">返回管理首页</a><br/>
  201. <a href="../index.asp?fs=<%=fs%>&amp;sb=<%=sb%>">返回网站首页</a><br/>
  202. </p>
  203. </card>
  204. </wml>