📄 admin_batch_delete_posts_form.asp
字号:
<% Option Explicit %>
<!--#include file="admin_common.asp" -->
<%
'****************************************************************************************
'** Copyright Notice
'**
'** Web Wiz Forums(TM)
'** http://www.webwizforums.com
'**
'** Copyright (C)2001-2008 Web Wiz(TM). All Rights Reserved.
'**
'** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS UNDER LICENSE FROM 'WEB WIZ'.
'**
'** IF YOU DO NOT AGREE TO THE LICENSE AGREEMENT THEN 'WEB WIZ' IS UNWILLING TO LICENSE
'** THE SOFTWARE TO YOU, AND YOU SHOULD DESTROY ALL COPIES YOU HOLD OF 'WEB WIZ' SOFTWARE
'** AND DERIVATIVE WORKS IMMEDIATELY.
'**
'** If you have not received a copy of the license with this work then a copy of the latest
'** license contract can be found at:-
'**
'** http://www.webwizguide.com/license
'**
'** For more information about this software and for licensing information please contact
'** 'Web Wiz' at the address and website below:-
'**
'** Web Wiz, Unit 10E, Dawkins Road Industrial Estate, Poole, Dorset, BH15 4JD, England
'** http://www.webwizguide.com
'**
'** Removal or modification of this copyright notice will violate the license contract.
'**
'****************************************************************************************
'*************************** SOFTWARE AND CODE MODIFICATIONS ****************************
'**
'** MODIFICATION OF THE FREE EDITIONS OF THIS SOFTWARE IS A VIOLATION OF THE LICENSE
'** AGREEMENT AND IS STRICTLY PROHIBITED
'**
'** If you wish to modify any part of this software a license must be purchased
'**
'****************************************************************************************
'Set the response buffer to true
Response.Buffer = True
%>
<!-- #include file="includes/browser_page_encoding_inc.asp" -->
<meta name="generator" content="Web Wiz Forums" />
<title>Batch Delete Forum Topics</title>
<%
'***** START WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ******
Response.Write("<!--//" & _
vbCrLf & "/* *******************************************************" & _
vbCrLf & "Software: Web Wiz Forums(TM) ver. " & strVersion & "" & _
vbCrLf & "Info: http://www.webwizforums.com" & _
vbCrLf & "Copyright: (C)2001-2008 Web Wiz(TM). All rights reserved" & _
vbCrLf & "******************************************************* */" & _
vbCrLf & "//-->" & vbCrLf & vbCrLf)
'***** END WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ******
%>
<!-- #include file="includes/admin_header_inc.asp" -->
<div align="center">
<h1>Batch Delete Forum Topics </h1><br />
<a href="admin_menu.asp<% = strQsSID1 %>">Control Panel Menu</a><br />
<br />
If you find the forum starts running a bit slow it maybe worth cleaning the database out by deleting topics.<br />
<br />
Select the Topics you want deleted by Forum and when a message was last posted in them.<br />
<br />
</p>
</div>
<form action="admin_batch_delete_posts.asp<% = strQsSID1 %>" method="post" name="frmDeleteTopics" id="frmDeleteTopics" onsubmit="return confirm('Are you sure you want to delete these topics?\n\nOnce the topics are deleted they will be lost forever.')">
<table border="0" align="center" cellpadding="4" cellspacing="1" class="tableBorder">
<tr>
<td class="tableLedger">Delete Topics in</td>
</tr>
<tr>
<td class="tableRow"><select name="FID">
<option value="0" selected="selected">All Forums</option><%
'Read in the forum name from the database
'Initalise the strSQL variable with an SQL statement to query the database
strSQL = "SELECT " & strDbTable & "Forum.Forum_name, " & strDbTable & "Forum.Forum_ID FROM " & strDbTable & "Category, " & strDbTable & "Forum WHERE " & strDbTable & "Category.Cat_ID = " & strDbTable & "Forum.Cat_ID ORDER BY " & strDbTable & "Category.Cat_order ASC, " & strDbTable & "Forum.Forum_Order ASC;"
'Query the database
rsCommon.Open strSQL, adoCon
'Loop through all the froum in the database
Do while NOT rsCommon.EOF
'Display a link in the link list to the forum
Response.Write vbCrLf & "<option value=" & CLng(rsCommon("Forum_ID")) & " "
Response.Write ">" & rsCommon("Forum_name") & "</option>"
'Move to the next record in the recordset
rsCommon.MoveNext
Loop
'Reset server objects
rsCommon.Close
Call closeDatabase()
%>
</select>
</td>
</tr>
<tr>
<td class="tableLedger">Delete Topics that haven't been posted in for</td>
</tr>
<tr>
<td class="tableRow"><select name="days">
<option value="0">Now</option>
<option value="7">1 Week</option>
<option value="14">2 Weeks</option>
<option value="31">1 Month</option>
<option value="62">2 Months</option>
<option value="124">4 Months</option>
<option value="182" selected>6 Months</option>
<option value="279">9 Months</option>
<option value="365">1 Year</option>
<option value="730">2 Years</option>
</select>
</td>
</tr>
<tr>
<td class="tableLedger">Select which type of topics to delete</td>
</tr>
<tr>
<td align="left" class="tableRow"><select name="priority">
<option value="4" selected>All Topics</option>
<option value="0">Normal Topics Only</option>
<option value="1">Sticky Topics Only</option>
<option value="2">Announcements Only</option>
<option value="3">Announcements (All Forums) Only</option>
</select></td>
</tr>
<tr>
<td align="center" class="tableBottomRow"><input type="submit" name="Submit" value="Delete Topics" /></td>
</tr>
</table>
</form>
<br />
<!-- #include file="includes/admin_footer_inc.asp" -->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -