?? useredit.jsp
字號:
<%@ page contentType="text/html;charset=gb2312" language="java"%>
<%@ include file="/common/taglibs.jsp"%>
<html:html>
<head>
<title>
論壇主頁
</title>
</head>
<link href="images/myStyleClass.css" rel="stylesheet" type="text/css">
<body>
<%@ include file="/common/header2.jsp"%>
<html:errors />
<%@ page import="j2eebbs.*"%>
<%@ page import="java.util.*"%>
<%
Vector allForumsVector = (Vector) session
.getAttribute(Constants.ALLFORUMS_KEY);
Forum forum = null;
%>
<form name=form1 method="post" action="edituser.do">
<table width="80%" border="1" align="center">
<tr align="right">
<td colspan="3">
<A href="<%=request.getContextPath()%>/backtoadminindex.do">
首頁
</A>
<A href="adminlogoff.do">
注銷登錄
</A>
</td>
</tr>
<tr align="center">
<td colspan="3">
修改用戶權限
</td>
</tr>
<tr align="center">
<td width="26%">
用戶名:
<%=request.getParameter("username")%>
<INPUT type=hidden size=15 name=username value="<%=request.getParameter("username")%>">
</td>
<td width="37%">
級別:
<select size=1 name="grade">
<option value="0">
管理員
</option>
<option value="1">
斑竹
</option>
<option value="2">
普通用戶
</option>
</select>
</td>
<td width="37%">
所在論壇:
<select size=1 name="forum">
<%
for (int i = 0; i < allForumsVector.size(); i++) {
forum = (Forum) allForumsVector.get(i);
%>
<option value="<%=forum.getId()%>">
<%=forum.getForumname()%>
</option>
<%
}
%>
</select>
</td>
</tr>
<tr align="center">
<td colspan="3">
<INPUT class=buttonface type=submit value=" 確 定 ">
<INPUT class=buttonface type=reset value=" 清 除 ">
</td>
</tr>
</table>
</form>
<%@ include file="/common/footer.jsp"%>
</body>
</html:html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -