⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 threads.jsp

📁 论坛软件系统亦称电子公告板(BBS)系统
💻 JSP
📖 第 1 页 / 共 2 页
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c"%>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
<%@ taglib uri="/WEB-INF/jrun-tag.tld" prefix="jrun"%>
<jsp:include page="../cp_header.jsp" />
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="guide">
	<tr><td><a href="#" onclick="parent.menu.location='admincp.jsp?action=menu'; parent.main.location='admincp.jsp?action=home';return false;">系统设置首页</a>&nbsp;&raquo;&nbsp;批量主题管理</td></tr>
</table>
<br />
					<script src="include/javascript/calendar.js" type="text/javascript"></script>
				<form method="post" action="admincp.jsp?action=threadsbatch" name="searchforum" id="searchforum">
					<input type="hidden" name="formhash" value="a83684ea">
					<input type="hidden" name="page" value="${currentpage}">
					<table width="100%" border="0" cellpadding="0" cellspacing="0"
						class="tableborder">
						<tr class="header">
							<td colspan="2">
								搜索符合条件主题
							</td>
						</tr>
						<tr>
							<td class="altbg1">
								显示详细主题列表:
							</td>
							<td class="altbg2" align="right">
								<c:choose>
									<c:when test="${tfs.detail == 1}">
										<input class="checkbox" type="checkbox" name="detail"
											value="1" checked>
									</c:when>
									<c:otherwise>
										<input class="checkbox" type="checkbox" name="detail"
											value="1">
									</c:otherwise>
								</c:choose>
							</td>
						</tr>
						<tr>
							<td class="altbg1">
								所在版块:
							</td>
							<td class="altbg2" align="right">
								<select name="inforum">
									<option value="0">
										&nbsp;&nbsp;&gt; 全部
									</option>
									<option value="0">
										&nbsp;
									</option>
									${forumselect}
								</select>
							</td>
						</tr>
						<tr>
							<td class="altbg1">
								发表时间范围(格式 yyyy-mm-dd,不限制请输入 0):
							</td>
							<td class="altbg2" align="right">
								<input type="text" name="starttime" size="10"
									onclick="showcalendar(event, this);"
									value="${tfs.starttime}">
								-
								<input type="text" name="endtime" size="10"
									onclick="showcalendar(event, this);" value="${tfs.endtime}">
							</td>
						</tr>
						<tr>
							<td class="altbg1">
								主题作者(多用户名中间请用半角逗号 "," 分割):
							</td>
							<td class="altbg2" align="right">
								不区分大小写
								<input type="checkbox" name="cins" value="1"/>
								<br />
								<input type="text" name="users" size="40"
									value="${tfs.users}">
							</td>
						</tr>
						<tr>
							<td class="altbg1">
								标题关键字(多关键字中间请用半角逗号 "," 分割):
							</td>
							<td class="altbg2" align="right">
								<input type="text" name="keywords" size="40"
									value="${tfs.keywords}">
							</td>
						</tr>
						<tr>
							<td class="altbg1">
								&nbsp;
							</td>
							<td align="right" class="altbg2" style="text-align: right;">
								<input class="checkbox" type="checkbox" value="1"
									onclick="$('advanceoption').style.display = $('advanceoption').style.display == 'none' ? '' : 'none'; this.value = this.value == 1 ? 0 : 1; this.checked = this.value == 1 ? false : true">
								更多选项 &nbsp;
							</td>
						</tr>
						<tbody id="advanceoption" style="display: none">
							<tr>
								<td class="altbg1">
									所在分类:
								</td>
								<td class="altbg2" align="right">
									<select name="intype">
										<option value="0">
											&nbsp;&nbsp;&gt; 全部
										</option>
										<option value="0">
											&nbsp;&nbsp;&gt; 无分类
										</option>
										<c:forEach var="t" items="${threadtype}">
											<option value="${t.typeid}">
												&nbsp;&nbsp;&gt;
												${t.name}(${t.description})
											</option>
										</c:forEach>
									</select>
								</td>
							</tr>
							<tr>
								<td class="altbg1">
									被浏览次数小于:
									<br>
									<br>
								</td>
								<td class="altbg2" align="right">
									<c:choose>
										<c:when test="${tfs.viewsless <= 0}">
											<input type="text" name="viewsless" size="40" value="">
										</c:when>
										<c:otherwise>
											<input type="text" name="viewsless" size="40"
												value="${tfs.viewsless}">
										</c:otherwise>
									</c:choose>
									<br>
									<br>
								</td>
							</tr>
							<tr>
								<td class="altbg1">
									被浏览次数大于:
									<br>
									<br>
								</td>
								<td class="altbg2" align="right">
									<c:choose>
										<c:when test="${tfs.viewsmore <= 0}">
											<input type="text" name="viewsmore" size="40" value="">
										</c:when>
										<c:otherwise>
											<input type="text" name="viewsmore" size="40"
												value="${tfs.viewsmore}">
										</c:otherwise>
									</c:choose>
									<br>
									<br>
								</td>
							</tr>
							<tr>
								<td class="altbg1">
									被回复次数小于:
									<br>
									<br>
								</td>
								<td class="altbg2" align="right">
									<c:choose>
										<c:when test="${tfs.repliesless <= 0}">
											<input type="text" name="repliesless" size="40" value="">
										</c:when>
										<c:otherwise>
											<input type="text" name="repliesless" size="40"
												value="${tfs.repliesless}">
										</c:otherwise>
									</c:choose>
									<br>
									<br>
								</td>
							</tr>
							<tr>
								<td class="altbg1">
									被回复次数大于:
									<br>
									<br>
								</td>
								<td class="altbg2" align="right">
									<c:choose>
										<c:when test="${tfs.repliesmore <= 0}">
											<input type="text" name="repliesmore" size="40" value="">
										</c:when>
										<c:otherwise>
											<input type="text" name="repliesmore" size="40"
												value="${tfs.repliesmore}">
										</c:otherwise>
									</c:choose>
									<br>
									<br>
								</td>
							</tr>
							<tr>
								<td class="altbg1">
									所需阅读权限高于
									<br>
									<br>
								</td>
								<td class="altbg2" align="right">
									<c:choose>
										<c:when test="${tfs.readpermmore <= 0}">
											<input type="text" name="readpermmore" size="40" value="">
										</c:when>
										<c:otherwise>
											<input type="text" name="readpermmore" size="40"
												value="${tfs.readpermmore}">
										</c:otherwise>
									</c:choose>
									<br>
									<br>
								</td>
							</tr>
							<tr>
								<td class="altbg1">
									售价高于:
									<br>
									<br>
								</td>
								<td class="altbg2" align="right">
									<c:choose>
										<c:when test="${tfs.pricemore <= 0}">
											<input type="text" name="pricemore" size="40" value="">
										</c:when>
										<c:otherwise>
											<input type="text" name="pricemore" size="40"
												value="${tfs.pricemore}">
										</c:otherwise>
									</c:choose>
									<br>
									<br>
								</td>
							</tr>
							<tr>
								<td class="altbg1">
									多少天内无新回复:
									<br>
									<br>
								</td>
								<td class="altbg2" align="right">
									<c:choose>
										<c:when test="${tfs.noreplydays <= 0}">
											<input type="text" name="noreplydays" size="40" value="">
										</c:when>
										<c:otherwise>
											<input type="text" name="noreplydays" size="40"
												value="${tfs.noreplydays}">
										</c:otherwise>
									</c:choose>
									<br>
									<br>
								</td>
							</tr>
							<tr>
								<td class="altbg1">
									是否包含特殊主题:
									<br>
									<br>
								</td>
								<td class="altbg2" align="right">
									<input class="radio" type="radio" name="specialthread"
										value="0" onclick="$('showspecial').style.display='none'"
										checked>
									无限制&nbsp;
									<input class="radio" type="radio" name="specialthread"
										value="1" onclick="$('showspecial').style.display=''">
									包含且仅包含&nbsp;
									<input class="radio" type="radio" name="specialthread"
										value="2" onclick="$('showspecial').style.display=''">
									不包含
									<div id="showspecial" style="display:none">
										<input class="checkbox" type="checkbox" name="special"
											value="1">
										投票主题&nbsp;
										<input class="checkbox" type="checkbox" name="special"
											value="2">
										商品主题&nbsp;
										<input class="checkbox" type="checkbox" name="special"
											value="3">
										悬赏主题&nbsp;
										<input class="checkbox" type="checkbox" name="special"
											value="4">
										活动主题&nbsp;
										<input class="checkbox" type="checkbox" name="special"
											value="5">
										&nbsp;
										<input class="checkbox" type="checkbox" name="special"
											value="6">
										&nbsp;
									</div>
									<br>
									<br>
								</td>
							</tr>
							<tr>
								<td class="altbg1">
									是否包含置顶帖:
									<br>
									<br>
								</td>
								<td class="altbg2" align="right">
									<c:choose>
										<c:when
											test="${ empty tfs.sticky  || tfs.sticky == 0}">
											<input class="radio" type="radio" name="sticky" value="0"
												checked>
										</c:when>
										<c:otherwise>
											<input class="radio" type="radio" name="sticky" value="0">
										</c:otherwise>
									</c:choose>

									无限制&nbsp;
									<c:choose>
										<c:when test="${tfs.sticky == 1}">
											<input class="radio" type="radio" name="sticky" value="1"
												checked>

										</c:when>
										<c:otherwise>
											<input class="radio" type="radio" name="sticky" value="1">
										</c:otherwise>
									</c:choose>

									包含且仅包含&nbsp;
									<c:choose>
										<c:when test="${tfs.sticky == 2}">
											<input class="radio" type="radio" name="sticky" value="2"
												checked>
										</c:when>
										<c:otherwise>
											<input class="radio" type="radio" name="sticky" value="2">
										</c:otherwise>
									</c:choose>
									不包含
									<br>
									<br>
								</td>
							</tr>

							<tr>
								<td class="altbg1">
									是否包含精华帖:
									<br>
									<br>
								</td>
								<td class="altbg2" align="right">

									<c:choose>
										<c:when test="${tfs.digest == 0}">
											<input class="radio" type="radio" name="digest" value="0"
												checked>
										</c:when>
										<c:otherwise>
											<input class="radio" type="radio" name="digest" value="0"
												checked>
										</c:otherwise>
									</c:choose>
									无限制&nbsp;

									<c:choose>
										<c:when test="${tfs.digest == 1}">
											<input class="radio" type="radio" name="digest" value="1"
												checked>
										</c:when>
										<c:otherwise>
											<input class="radio" type="radio" name="digest" value="1">
										</c:otherwise>
									</c:choose>
									包含且仅包含&nbsp;
									<c:choose>
										<c:when test="${tfs.digest == 2}">
											<input class="radio" type="radio" name="digest" value="2"
												checked>
										</c:when>
										<c:otherwise>
											<input class="radio" type="radio" name="digest" value="2">
										</c:otherwise>
									</c:choose>
									不包含
									<br>
									<br>
								</td>
							</tr>
							<tr>
								<td class="altbg1">
									是否包含文集:
									<br>
									<br>
								</td>
								<td class="altbg2" align="right">
									<c:choose>
										<c:when test="${ empty  tfs.blog ||tfs.blog == 0}">
											<input class="radio" type="radio" name="blog" value="0"
												checked>
										</c:when>
										<c:otherwise>
											<input class="radio" type="radio" name="blog" value="0">
										</c:otherwise>
									</c:choose>
									无限制&nbsp;
									<c:choose>
										<c:when test="${tfs.blog == 1}">
											<input class="radio" type="radio" name="blog" value="1"
												checked>
										</c:when>
										<c:otherwise>
											<input class="radio" type="radio" name="blog" value="1">
										</c:otherwise>
									</c:choose>
									包含且仅包含&nbsp;
									<c:choose>
										<c:when test="${tfs.blog == 2}">
											<input class="radio" type="radio" name="blog" value="2" checked>
										</c:when>
										<c:otherwise>
											<input class="radio" type="radio" name="blog" value="2">
										</c:otherwise>
									</c:choose>
									不包含
									<br>
									<br>
								</td>
							</tr>
							<tr>
								<td class="altbg1">
									是否包含附件:
									<br>
									<br>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -