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

📄 clubupfiles.jsp

📁 特色: 1.今晚在线社区独有的双风格分桢形式 2.社区最多可进行3级分类
💻 JSP
字号:
<%@ page language="java" contentType="text/html;charset=UTF-8" %>
<%@ include file="../GVinc/gvInclude.jsp" %>
<%@ include file="clubMasterPass.jsp" %>
<jsp:useBean id="cuf" scope="page" class="com.gamvan.club.manage.ClubUpfiles"/>
<% 	
//权限判断共享代码
int iPage =  ParamUtils.getIntParameter(request,"iPage",1);
String cfIDs[];
String realPath=request.getRealPath("");
if(request.getMethod().equals("POST")){
	cfIDs = request.getParameterValues("cfID");
	cuf.setRealPath(realPath);
	cuf.filesDels(cfIDs);
	out.print(OutPrint.prtCenter(cuf.getMessage(),"./clubUpFiles.jsp?iPage="+iPage,1));
	out.close();
	if(true)return;
}
%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>社区管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<STYLE type=text/css media=screen>@import url(../GVinc/GamVanClubStyle.css);</STYLE>
</head>
<body>
<script type="text/javascript" src="../GVscript/GVshowMenu.js"></script>
<script language="javascript" type="text/javascript" src="../GVscript/GVtopCode.js"></script>
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="2" class="tab">
<tr><td align="center"><strong>管理上传文件</strong></td></tr></table>
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" class="tab">
<form name="Gforms" method="post" action="">
<tr><td width="30" height="25" align="center"><strong>操作</strong></td>
<td width="*" align="center"><strong>原文件名</strong></td>
<td width="110" align="center"><strong>上传时间</strong></td>
<td width="80" align="center"><strong>上传人</strong></td>
<td width="100" align="center"><strong>上传IP</strong></td>
<td width="100" align="center"><strong>所属位置</strong></td>
<td width="50" align="center"><strong>扩展名</strong></td>
</tr><% 
int totalPage = cuf.filesCount();
%><c:forEach var="f" items="<%=cuf.filesList(iPage,30)%>">
<tr align="center" bgcolor="#f6f6f6">
<td bgcolor="#f6f6f6">
<club:files type="htmlCheckbox" idIs="${f.cfID}"/>
</td><td>
<c:set var="fileDomain" value="<%=clubUpfileDomain%>" scope="page"/>
<club:files type="fileName" value="${f.cfOldName}" property="${f.cfOldPath}" url="${fileDomain}${f.cfNewPath}${f.cfNewName}"/>
</td>
<td>
<span class="smallTxt">
<club:files type="dateTime" value="${f.cfDateTime}"/>
</span>
</td><td>
<club:files type="byUser" value="${f.cfByUser}" idIs="${f.cfByUserID}" url="../"/>
</td><td>
<span class="smalltxt"><club:files type="byIp" value="${f.cfByIp}"/></span>
</td> <td>
<club:files type="ccName" value="${f.ccName}" idIs="${f.ccID}" url="../"/>
</td><td>
<club:files type="fileExt" value="${f.cfExt}"/>
</td></tr>
</c:forEach>
<tr bgcolor="#f6f6f6">
<td align="center" bgcolor="#f6f6f6">
<input name="chkall" type="checkbox" id="chkall" value="on" onclick="checkAll(this.form)"/> </td>
<td height="36" bgcolor="#f6f6f6" colspan="10" ><input name="gvSubmit" type="submit" id="gvSubmit" value="删除文件"></td>
</tr>
</form></table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="8">
<%=OutPrint.pageJump(totalPage,30, iPage, "clubUpFiles.jsp?")%></td>
</tr>  </table>
</body>
</html>

⌨️ 快捷键说明

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