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

📄 trash_admin.jsp

📁 EasyJForum 是一个基于 Java 技术的免费社区论坛软件系统
💻 JSP
字号:
<%@ page contentType="text/html;charset=gbk" errorPage="../error.jsp"%>
<%@ page import="java.util.ArrayList"%>
<%@ page import="com.hongshee.ejforum.util.PageUtils"%>
<%@ page import="com.hongshee.ejforum.common.CacheManager"%>
<%@ page import="com.hongshee.ejforum.data.UserDAO.UserInfo"%>
<%@ page import="com.hongshee.ejforum.data.SectionDAO.SectionVO"%>
<%@ page import="com.hongshee.ejforum.data.BoardDAO.BoardVO"%>
<%
	UserInfo userinfo = PageUtils.getAdminUser(request, response);
	if (userinfo == null) return;

	CacheManager cache = CacheManager.getInstance();
    ArrayList sections = cache.getSections();
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<HTML xmlns="http://www.w3.org/1999/xhtml"><HEAD>
<META http-equiv=Content-Type content="text/html; charset=gbk">
<LINK href="../style/admin.css" type=text/css rel=stylesheet>
<SCRIPT src="../../js/common.js" type=text/javascript></SCRIPT>
<SCRIPT src="../js/admin.js" type=text/javascript></SCRIPT>
</HEAD>
<BODY topMargin=10>
<TABLE cellSpacing=6 cellPadding=2 width="100%" border=0>
  <TBODY>
  <TR>
    <TD>
      <TABLE class=guide cellSpacing=0 cellPadding=0 width="100%" border=0>
        <TBODY>
        <TR>
          <TD><A onclick="parent.location='../index.htm';return false;" 
            href="#">后台管理首页</A>&nbsp;&raquo;&nbsp;帖子回收站</TD></TR></TBODY></TABLE><BR>
      <FORM id="frmsearch" name="frmsearch" onSubmit="checkfields(this); return false;" action="./trash_list.jsp" method=post>
      <TABLE class=info_tb cellSpacing=0 cellPadding=0 width="100%" border=0>
        <TBODY>
        <TR class=header>
          <TD colSpan=2>搜索符合条件的被删帖子</TD></TR>
        <TR>
          <TD class=altbg1 width="45%">帖子类型:</TD>
          <TD class=altbg2>
		  	<INPUT class=radio type=radio value="topic" name="trashType" id="trash_topic" checked> 主题 &nbsp;
			<INPUT class=radio type=radio value="reply" name="trashType" id="trash_reply"> 回帖</TD></TR>
        <TR>
          <TD class=altbg1 width="45%">所在版块:</TD>
          <TD class=altbg2 align=right>
		  	<SELECT name="boardID">
<%
	if (userinfo.groupID == 'A') {
%>			
			<OPTION value=all selected>&nbsp; &gt; 全部</OPTION>
			<OPTION value="">&nbsp;</OPTION>
<%
	}
	if (sections != null) 
	{
		SectionVO aSection = null;
		BoardVO aBoard = null;
		String moderators = null;
		
		for (int i=0; i<sections.size(); i++)	
		{
			aSection = (SectionVO)sections.get(i);
%>			
		  <OPTGROUP label="<%= aSection.sectionName %>">
<%
			if (aSection.boardList != null && aSection.boardList.size() > 0)
			{
				for (int j=0; j<aSection.boardList.size(); j++)
				{
					aBoard = (BoardVO)aSection.boardList.get(j);
					if (userinfo.groupID != 'A') 
					{
						moderators = PageUtils.getModerators(aSection, aBoard);
			           	if (moderators.indexOf("," + userinfo.userID.toLowerCase() + ",") < 0)
							continue;
					}
%>		  
		  <OPTION value="<%= aBoard.boardID %>">&nbsp; &gt; <%= aBoard.boardName %></OPTION>
<%
				}
			}
%>		  
		  </OPTGROUP>
<%
		}
	}
%>
			</SELECT></TD></TR>
        <TR>
          <TD class=altbg1>标题关键字:</TD>
          <TD class=altbg2 align=right><INPUT size=40 name="topicTitle"></TD></TR>
        <TR>
          <TD class=altbg1>原帖用户名(可使用通配符 *):</TD>
          <TD class=altbg2 align=right><INPUT size=40 name="userID"></TD></TR>
        <TR>
          <TD class=altbg1>删帖用户名(可使用通配符 *):</TD>
          <TD class=altbg2 align=right><INPUT size=40 name="deleteUser"></TD></TR>
        <TR>
          <TD class=altbg1>被删除于多少天以前:</TD>
          <TD class=altbg2 align=right><INPUT size=40 name="days"></TD></TR>
		</TBODY></TABLE><BR>
      <CENTER><INPUT class=button type=submit value="提 交" name=searchsubmit></CENTER></FORM><BR>
	</TD></TR></TBODY></TABLE><BR><BR>
<script language="javascript">
function checkfields(theform) {
    var filter = /^\d+$/;
	var tmpStr = trim(theform.days.value);
    if (tmpStr != '' && !filter.test(tmpStr)) {
    	alert('天数必须为整数');
      	theform.days.focus();
		return;
    }
	theform.submit();
}
</script>	  
<%= PageUtils.getAdminFooter(request) %>
</BODY></HTML>

⌨️ 快捷键说明

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