setting1.asp
上传用户:saigedz
上传日期:2019-10-14
资源大小:997k
文件大小:7k
源码类别:

中间件编程

开发平台:

HTML/CSS

  1. <%@ CODEPAGE=65001 %>
  2. <%
  3. '///////////////////////////////////////////////////////////////////////////////
  4. '// 插件应用:    Z-Blog 1.7
  5. '// 插件制作:    
  6. '// 备    注:    
  7. '// 最后修改:   
  8. '// 最后版本:    
  9. '///////////////////////////////////////////////////////////////////////////////
  10. %>
  11. <% Option Explicit %>
  12. <% On Error Resume Next %>
  13. <% Response.Charset="UTF-8" %>
  14. <% Response.Buffer=True %>
  15. <!-- #include file="../../c_option.asp" -->
  16. <!-- #include file="../../function/c_function.asp" -->
  17. <!-- #include file="../../function/c_function_md5.asp" -->
  18. <!-- #include file="../../function/c_system_lib.asp" -->
  19. <!-- #include file="../../function/c_system_base.asp" -->
  20. <!-- #include file="../../function/c_system_event.asp" -->
  21. <!-- #include file="../../function/c_system_plugin.asp" -->
  22. <%
  23. Call System_Initialize()
  24. '检查非法链接
  25. Call CheckReference("")
  26. '检查权限
  27. If BlogUser.Level>1 Then Call ShowError(6) 
  28. If CheckPluginState("Totoro")=False Then Call ShowError(48)
  29. BlogTitle="TotoroⅡ(基于Totoro的Z-Blog的评论及引用管理审核系统增强版)"
  30. %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  31. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%=ZC_BLOG_LANGUAGE%>" lang="<%=ZC_BLOG_LANGUAGE%>">
  32. <head>
  33. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  34. <meta http-equiv="Content-Language" content="<%=ZC_BLOG_LANGUAGE%>" />
  35. <link rel="stylesheet" rev="stylesheet" href="../../CSS/admin.css" type="text/css" media="screen" />
  36. <script language="JavaScript" src="../../script/common.js" type="text/javascript"></script>
  37. <title><%=BlogTitle%></title>
  38. </head>
  39. <body>
  40. <div id="divMain">
  41. <div class="Header"><%=BlogTitle%></div>
  42. <div class="SubMenu"><span class="m-left"><a href="setting.asp">TotoroⅡ设置</a></span><span class="m-left m-now"><a href="setting1.asp">审核评论<%
  43. Dim objRS1
  44. Set objRS1=objConn.Execute("SELECT COUNT([comm_ID]) FROM [blog_Comment] WHERE [log_ID]<0")
  45. If (Not objRS1.bof) And (Not objRS1.eof) Then
  46. Response.Write "("&objRS1(0)&"条未审核的评论)"
  47. End If
  48. %></a></span><span class="m-left"><a href="setting2.asp">审核引用<%
  49. Dim objRS2
  50. Set objRS2=objConn.Execute("SELECT COUNT([tb_ID]) FROM [blog_TrackBack] WHERE [log_ID]<0")
  51. If (Not objRS2.bof) And (Not objRS2.eof) Then
  52. Response.Write "("&objRS2(0)&"条未审核的引用)"
  53. End If
  54. %></a></span></div>
  55. <div id="divMain2">
  56. <%
  57. Dim intPage,intContent
  58. Dim i
  59. Dim objRS
  60. Dim strSQL
  61. Dim strPage
  62. intPage=Request.QueryString("page")
  63. Call CheckParameter(intPage,"int",1)
  64. intContent=FilterSQL(intContent)
  65. Set objRS=Server.CreateObject("ADODB.Recordset")
  66. objRS.CursorType = adOpenKeyset
  67. objRS.LockType = adLockReadOnly
  68. objRS.ActiveConnection=objConn
  69. objRS.Source=""
  70. strSQL=strSQL&" WHERE  ([log_ID]<0) "
  71. If CheckRights("Root")=False Then strSQL=strSQL & "AND( ([comm_AuthorID] = " & BlogUser.ID & " ) OR ((SELECT [log_AuthorID] FROM [blog_Article] WHERE [blog_Article].[log_ID]=[blog_Comment].[log_ID])=" & BlogUser.ID & " )) "
  72. If Trim(intContent)<>"" Then strSQL=strSQL & " AND ( ([comm_Author] LIKE '%" & intContent & "%') OR ([comm_Content] LIKE '%" & intContent & "%') OR ([comm_HomePage] LIKE '%" & intContent & "%') ) "
  73. Response.Write "<table border=""1"" width=""100%"" cellspacing=""1"" cellpadding=""1"">"
  74. Response.Write "<tr><td width='5%'>"& ZC_MSG076 &"</td><td width='14%'>"& ZC_MSG001 &"</td><td>"& ZC_MSG055 &"</td><td width='12%'>"& ZC_MSG080 &"</td><td width='15%'>"& ZC_MSG075 &"</td><td width='5%'  align='center'><a href='' onclick='BatchSelectAll();return false'>"& ZC_MSG229 &"</a></td></tr>"'
  75. objRS.Open("SELECT * FROM [blog_Comment] "& strSQL &" ORDER BY [comm_ID] DESC")
  76. objRS.PageSize=ZC_MANAGE_COUNT
  77. If objRS.PageCount>0 Then objRS.AbsolutePage = intPage
  78. If (Not objRS.bof) And (Not objRS.eof) Then
  79. For i=1 to objRS.PageSize
  80. Response.Write "<tr>"
  81. Response.Write "<td>" & objRS("comm_ID") & "</td>"
  82. If Trim(objRS("comm_Email"))="" Then
  83. Response.Write "<td>"& objRS("comm_Author") & "</td>"
  84. Else
  85. Response.Write "<td><a href=""mailto:"& objRS("comm_Email") &""">" & objRS("comm_Author") & "</a></td>"
  86. End If
  87. Response.Write "<td><a href="""" onclick='javascript:$(this).parent().html(""" & TransferHTML(objRS("comm_Content"),"[html-format][enter][""]") & """);return false;' title="""&TransferHTML(TransferHTML(UBBCode(objRS("comm_Content"),"[face][link][autolink][font][code][image][typeset][media][flash][key][upload]"),"[html-japan][upload]"),"[nohtml]")&""">" & Left(objRS("comm_Content"),40) & "...</a></td>"
  88. Response.Write "<td>" & objRS("comm_IP") & "</td>"
  89. Response.Write "<td>" & objRS("comm_PostTime") & "</td>"
  90. Response.Write "<td align=""center"" ><input type=""checkbox"" name=""edtDel"" id=""edtDel"" value="""&objRS("comm_ID")&"""/></td>"
  91. Response.Write "</tr>"
  92. objRS.MoveNext
  93. If objRS.eof Then Exit For
  94. Next
  95. End If
  96. Response.Write "</table>"
  97. For i=1 to objRS.PageCount
  98. strPage=strPage &"<a href='"&ZC_BLOG_HOST&"plugin/totoro/setting1.asp?page="& i &"'>["& Replace(ZC_MSG036,"%s",i) &"]</a> "
  99. Next
  100. Response.Write "<br/><form id=""frmBatch"" method=""post"" action=""""><p><input type=""hidden"" id=""edtBatch"" name=""edtBatch"" value=""""/><input class=""button"" type=""submit"" onclick='BatchDeleteAll(""edtBatch"");if(document.getElementById(""edtBatch"").value){this.form.action="""&ZC_BLOG_HOST&"plugin/totoro/commentdel.asp"&""";return window.confirm("""& ZC_MSG058 &""");}else{return false}' value=""删除所选择的评论"" id=""btnPost""/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input class=""button"" type=""submit"" onclick='BatchDeleteAll(""edtBatch"");if(document.getElementById(""edtBatch"").value){this.form.action="""&ZC_BLOG_HOST&"plugin/totoro/commentpass.asp"&""";return window.confirm("""& ZC_MSG058 &""");}else{return false}' value=""通过所选择的评论"" id=""btnPost""/></p><form><br/>" & vbCrlf
  101. Response.Write "<hr/>" & ZC_MSG042 & ": " & strPage
  102. objRS.Close
  103. Set objRS=Nothing
  104. %>
  105. </div>
  106. <script language="javascript">
  107. //斑马线
  108. var tables=document.getElementsByTagName("table");
  109. var b=false;
  110. for (var j = 0; j < tables.length; j++){
  111. var cells = tables[j].getElementsByTagName("tr");
  112. cells[0].className="color1";
  113. for (var i = 1; i < cells.length; i++){
  114. if(b){
  115. cells[i].className="color2";
  116. b=false;
  117. }
  118. else{
  119. cells[i].className="color3";
  120. b=true;
  121. };
  122. };
  123. }
  124. function ChangeValue(obj){
  125. if (obj.value=="True")
  126. {
  127. obj.value="False";
  128. return true;
  129. }
  130. if (obj.value=="False")
  131. {
  132. obj.value="True";
  133. return true;
  134. }
  135. }
  136. </script>
  137. </body>
  138. </html>
  139. <%
  140. Call System_Terminate()
  141. If Err.Number<>0 then
  142.   Call ShowError(0)
  143. End If
  144. %>