📄 groupofforum.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>后台管理>></li><li><h3>版面下属特殊成员设置(如管理员、黑名单等)</h3></li>
</ul>
</div>
<%
ForumJsp forumJsp = new ForumJsp(request,response);
GroupJsp groupJsp = new GroupJsp(request,response);
GroupOfForumJsp groupOfForumJsp = new GroupOfForumJsp(request,response);
com.yeqiangwei.club.controller.form.GroupOfForumForm groupOfForumForm = groupOfForumJsp.getGroupOfForumForm();
%><%@ include file="../inc/msgHint.jsp" %>
<div class="sidebar gform">
<form id="gform" name="gform" action="admin.do?act=groupOfForumEdit" method="post" onsubmit="return c.p('qwSubmit',true);">
<table summary="用户组管理" class="tabform">
<tbody>
<tr>
<th scope="row">用户名:</th>
<td><input type="text" name="userName" id="userName" value="<%=groupOfForumForm.getUserName()%>" class="input"/></td>
</tr>
<tr>
<th scope="row">所属版面:</th>
<td class="t_end">
<select id="forumId" name="forumId">
<option value="0">请选择版面</option><c:forEach var="r" items="<%=forumJsp.findAll()%>">
<club:html type="option" name="${r.forumName}" value="${r.forumId}" ovalue="<%=String.valueOf(groupOfForumForm.getForumId())%>"/></c:forEach>
</select>
</td>
</tr>
<tr>
<th scope="row">设定用户组:</th>
<td class="t_end">
<select id="groupId" name="groupId">
<option value="0">请选择用户组</option><c:forEach var="r" items="<%=groupJsp.findAll()%>">
<club:html type="option" name="${r.groupName}" value="${r.groupId}" ovalue="<%=String.valueOf(groupOfForumForm.getGroupId())%>"/></c:forEach>
</select>(此选项将更新用户所在用户组,所获用户组权限仅针对本版有效)
</td>
</tr>
<tr>
<th scope="row">有效期限至:</th>
<td class="t_end">
<club:html type="input" name="uptoDateTime" id="uptoDateTime" htmlType="text" value="<%=String.valueOf(groupOfForumForm.getUptoDateTime())%>" />格式:年月日(例如 20070104或20071218)
</td>
</tr>
<tr>
<th scope="row"></th>
<td class="t_end">
<input type="hidden" name="groupOfForumId" id="groupOfForumId" value="<%=groupOfForumForm.getGroupOfForumId()%>">
<input type="hidden" name="userId" id="userId" value="<%=groupOfForumForm.getUserId()%>">
<input type="submit" name="qwSubmit" id="qwSubmit" value="确定提交">
</td>
</tr>
</tbody>
</table>
</form>
</div>
</body>
</html>
<!-- Powered by www.YeQiangWei.com -->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -