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

📄 groupofforumlist.jsp

📁 JSP购物车(SQLserver版) ================== 简单的JSP电子商务网站购物车 带结算功能,带注册系统 大二时自己编写的,供大家参考学习 功能不是很详尽,美工
💻 JSP
字号:
<%@ page language="java" contentType="text/html;charset=UTF-8" %><%@ include file="../inc/common.jsp" %><!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>
<title>${basic.name}后台管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<club:html type="css" />
<script type="text/javascript" src="../scripts/common.js"></script>
</head>
<body>
<div id="wrap">
<div class="sitemap">
<ul>
<li>您的位置:</li><li>后台管理&gt;&gt;</li><li><h3>版面下属特殊成员(如管理员、黑名单等)</h3></li>
</ul>
</div>
<div class="part"><ul><li class="tp"><a href="groupOfForum.jsp">添加成员</a></li></ul></div>
<%
GroupOfForumJsp groupOfForumJsp = new GroupOfForumJsp(request,response);
%><%@ include file="../inc/msgHint.jsp" %>
<div class="sidebar">
<form id="gform" name="gform" action="admin.do?act=" method="post">
<table summary="社区所有版面列表" id="forums">
<thead>
<tr>
<th scope="col" class="t_0">名称</th>
<th scope="col" class="t_2">用户组</th>
<th scope="col" class="t_2">分类</th>
<th scope="col" class="t_1">编辑</th>
<th scope="col" class="t_1 t_end">删除</th>
</tr>
</thead>
<tbody>
<c:forEach var="f" items="<%=groupOfForumJsp.findByForumId()%>">
<tr>
<td class="t_0"><club:link type="userNameLink" url="../" value="${f.userName}" idIs="${f.userId}"/></td>
<td><c:out value="${f.groupName}"/></td>
<td><a href="forums.jsp"><c:out value="${f.forumName}"/></a></td>
<td><club:link type="basic" url="groupOfForum.jsp" param="groupOfForumId=${f.groupOfForumId}&act=groupOfForumEdit" value="编辑" rel="self" /></td>
<td class="t_1 t_end"><club:link type="basic" value="删除" rel="self" property=" onclick=\"c.cf('确定删除《${f.userName}》吗?删除后将永久不能恢复!','admin.do?act=groupOfForumDel&groupOfForumId=${f.groupOfForumId}');\""/></td>
</tr>
</c:forEach>
</tbody>
</table>
<div class="tfoot">
<a href="admin.do?act=clearGroupOfForumCache">刷新缓存</a>
</div>
</form>
</div>
</div>
</body>
</html>
<!-- Powered by www.YeQiangWei.com -->

⌨️ 快捷键说明

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