UserReport.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:8k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="../../FS_Inc/Const.asp" -->
  3. <!--#include file="../../FS_InterFace/MF_Function.asp" -->
  4. <!--#include file="../../FS_Inc/Function.asp" -->
  5. <!--#include file="../../FS_Inc/Func_Page.asp" -->
  6. <%
  7. dim Conn,User_Conn,strShowErr
  8. MF_Default_Conn
  9. MF_User_Conn
  10. MF_Session_TF
  11. if not MF_Check_Pop_TF("ME_Jubao") then Err_Show 
  12. if not MF_Check_Pop_TF("ME037") then Err_Show 
  13. Function GetFriendName(f_strNumber)
  14. Dim RsGetFriendName
  15. Set RsGetFriendName = User_Conn.Execute("Select UserName From FS_ME_Users Where UserNumber = '"& f_strNumber &"'")
  16. If  Not RsGetFriendName.eof  Then 
  17. GetFriendName = RsGetFriendName("UserName")
  18. Else
  19. GetFriendName = 0
  20. End If 
  21. set RsGetFriendName = nothing
  22. End Function 
  23. if Request.Form("Action")="Del" then
  24. if trim(Request.Form("Id"))="" then
  25. strShowErr = "<li>请选择至少一项</li>"
  26. Response.Redirect("lib/Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  27. Response.end
  28. end if
  29. User_Conn.execute("Delete From FS_ME_Report where ReportID in ("&Request.Form("Id")&")")
  30. strShowErr = "<li>删除成功</li>"
  31. Response.Redirect("lib/Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=../UserRePort.asp")
  32. Response.end
  33. end if
  34. Dim int_RPP,int_Start,int_showNumberLink_,str_nonLinkColor_,toF_,toP10_,toP1_,toN1_,toN10_,toL_,showMorePageGo_Type_,cPageNo,strpage,i
  35. int_RPP=15 '设置每页显示数目
  36. int_showNumberLink_=8 '数字导航显示数目
  37. showMorePageGo_Type_ = 1 '是下拉菜单还是输入值跳转,当多次调用时只能选1
  38. str_nonLinkColor_="#999999" '非热链接颜色
  39. toF_="<font face=webdings title=""首页"">9</font>"   '首页 
  40. toP10_=" <font face=webdings title=""上十页"">7</font>" '上十
  41. toP1_=" <font face=webdings title=""上一页"">3</font>" '上一
  42. toN1_=" <font face=webdings title=""下一页"">4</font>" '下一
  43. toN10_=" <font face=webdings title=""下十页"">8</font>" '下十
  44. toL_="<font face=webdings title=""最后一页"">:</font>"
  45. strpage=request("page")
  46. if len(strpage)=0 Or strpage<1 or trim(strpage)=""Then:strpage="1":end if
  47. %>
  48. <html xmlns="http://www.w3.org/1999/xhtml">
  49. <HEAD>
  50. <TITLE>FoosunCMS</TITLE>
  51. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
  52. <link href="../images/skin/Css_<%=Session("Admin_Style_Num")%>/<%=Session("Admin_Style_Num")%>.css" rel="stylesheet" type="text/css">
  53. <BODY LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 scroll=yes>
  54. <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
  55.   <tr class="hback"> 
  56.     <td width="100%" class="xingmu">举报管理</td>
  57.   </tr class="hback">
  58.   <tr class="hback">
  59.     <td class="hback"><a href="UserReport.asp">返回</a></td>
  60.   </tr class="hback">
  61. </table>
  62. <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
  63.   <form action="UserReport.asp"  method="post" name="form1" id="form1">
  64.     <tr class="hback"> 
  65.       <td width="17%" class="xingmu"><div align="left"><strong> 标题</strong></div></td>
  66.       <td width="15%" class="xingmu"><div align="left"><strong>举报人</strong></div></td>
  67.       <td width="11%" class="xingmu"><div align="left"><strong>被举报人</strong></div></td>
  68.       <td width="20%" class="xingmu"><div align="center"><strong>日期</strong></div></td>
  69.       <td width="10%" class="xingmu"><div align="center"><strong>类型</strong></div></td>
  70.       <td width="2%" class="xingmu">&nbsp;</td>
  71.     </tr>
  72.     <%
  73. dim rs_reportsql,rs_report
  74. strpage=request("page")
  75. if len(strpage)=0 Or strpage<1 or trim(strpage)=""  Then strpage="1"
  76. Set rs_report = Server.CreateObject(G_FS_RS)
  77. if Request.QueryString("type")<>"" then
  78. rs_reportsql = "Select * From FS_ME_Report  where ReportType="&cint(Request.QueryString("type"))&" order by  ReportID desc"
  79. else
  80. rs_reportsql = "Select * From FS_ME_Report   order by  ReportID desc"
  81. end if
  82. rs_report.Open rs_reportsql,User_Conn,1,1
  83. if rs_report.eof then
  84.    rs_report.close
  85.    set rs_report=nothing
  86.    Response.Write"<tr  class=""hback""><td colspan=""6""  class=""hback"" height=""40"">没有记录。</td></tr>"
  87. else
  88. rs_report.PageSize=int_RPP
  89. cPageNo=NoSqlHack(Request.QueryString("Page"))
  90. If cPageNo="" Then cPageNo = 1
  91. If not isnumeric(cPageNo) Then cPageNo = 1
  92. cPageNo = Clng(cPageNo)
  93. If cPageNo>rs_report.PageCount Then cPageNo=rs_report.PageCount 
  94. If cPageNo<=0 Then cPageNo=1
  95. rs_report.AbsolutePage=cPageNo
  96. for i=1 to int_RPP
  97. if rs_report.eof Then exit For 
  98. dim s_b,s_b_
  99. if rs_report("isRead")=0 then
  100. s_b="<b>"
  101. s_b_="</b>"
  102. end if
  103. %>
  104.     <tr class="hback"> 
  105.       <td class="hback"><div align="left"> <a href="UserReport.asp?id=<% = rs_report("ReportID")%>&Read=1"> 
  106.           <%=s_b%><% = left(rs_report("Content"),20)&"..."%><%=s_b_%>
  107.           </a></div></td>
  108.       <td class="hback"><div align="left"> <%=s_b%><a href="../../<%=G_USER_DIR%>/ShowUser.asp?UserNumber=<% = rs_report("UserNumber")%>" target="_blank">
  109.           <% = GetFriendName(rs_report("UserNumber"))%><%=s_b_%>
  110.           </a> </div></td>
  111.       <td class="hback"><div align="left"> <%=s_b%><a href="../../<%=G_USER_DIR%>/ShowUser.asp?UserNumber=<% = rs_report("f_UserNumber")%>" target="_blank">
  112.           <% = GetFriendName(rs_report("f_UserNumber"))%><%=s_b_%>
  113.           </a> </div></td>
  114.       <td class="hback"><div align="center"> 
  115.           <%=s_b%><% = rs_report("addtime")%><%=s_b_%>
  116.         </div></td>
  117.       <td class="hback"><div align="center"> 
  118.           <%=s_b%><%
  119. select case rs_report("ReportType")
  120. case 0
  121. response.Write "<a href=UserReport.asp?type=0>骗子</a>"
  122. case 1
  123. response.Write "<a href=UserReport.asp?type=1>广告</a>"
  124. case 2
  125. response.Write "<a href=UserReport.asp?type=2>攻击别人</a>"
  126. case 3
  127. response.Write "<a href=UserReport.asp?type=3>非法言论</a>"
  128. case else
  129. response.Write "<a href=UserReport.asp?type=4>其他</a>"
  130. end select
  131. %><%=s_b_%>
  132.         </div></td>
  133.       <td class="hback"><input name="ID" type="checkbox" id="ID" value="<% = rs_report("ReportID")%>"></td>
  134.     </tr>
  135.     <%
  136.   rs_report.MoveNext
  137.   Next
  138.   %>
  139.     <tr class="hback"> 
  140.       <td colspan="6" class="hback"> <table width="100%" border="0" cellspacing="0" cellpadding="0">
  141.           <tr> 
  142.             <td width="80%"> <span class="top_navi"> 
  143.               <%
  144. response.Write "<p>"&  fPageCount(rs_report,int_showNumberLink_,str_nonLinkColor_,toF_,toP10_,toP1_,toN1_,toN10_,toL_,showMorePageGo_Type_,cPageNo)
  145. %>
  146.               <input type="checkbox" name="chkall" value="checkbox" onClick="CheckAll(this.form)">
  147.               选中所有短信 
  148.               <input name="Action" type="hidden" id="Action" value="">
  149.               <input type="button" name="Submit2" value="删除选中信息"  onClick="document.form1.Action.value='Del';{if(confirm('确定清除您所选择的记录吗?')){this.document.form1.submit();return true;}return false;}">
  150.               </SPAN></td>
  151.           </tr>
  152.           <%end if%>
  153.         </table>
  154. </td>
  155.     </tr>
  156.   </FORM>
  157. </table>
  158.   <%if Request.QueryString("Read")="1" then%>
  159. <table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
  160.           <tr>
  161.             
  162.     <td height="55" class="hback"> 
  163.       <%
  164. dim rs
  165. set rs= Server.CreateObject(G_FS_RS)
  166. rs.open "select Content,isRead From FS_ME_Report  where ReportID="&NoSqlHack(Request.QueryString("Id")),User_Conn,1,3
  167. if rs.eof then
  168. response.Write("找不到记录")
  169. else
  170. rs("isRead")=1
  171. rs.update
  172. response.Write rs("Content")
  173. end if
  174. rs.close:set rs=nothing
  175. %>
  176.     </td>
  177.           </tr>
  178.         </table>
  179. <%end if%>
  180. </body>
  181. </html>
  182. <%
  183. Conn.close:set conn=nothing
  184. User_Conn.close:set User_Conn=nothing
  185. %>
  186. <script language="JavaScript" type="text/JavaScript">
  187. function CheckAll(form)  
  188.   {  
  189.   for (var i=0;i<form1.elements.length;i++)  
  190.     {  
  191.     var e = form1.elements[i];  
  192.     if (e.name != 'chkall')  
  193.        e.checked = form1.chkall.checked;  
  194.     }  
  195.   }
  196. </script>