?? forumedit.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">
<%@ include file="/common/header2.jsp"%>
<html:errors />
<body>
<%@ page import="j2eebbs.*"%>
<%@ page import="java.util.*"%>
<%
Vector managerUserVector = (Vector) session
.getAttribute(Constants.MANAGER_CANDIDATE_KEY);
String strForumid = (String) session
.getAttribute(Constants.EDIT_FORUMID_KEY);
String forumname = (String) session
.getAttribute(Constants.EDIT_FORUMNAME_KEY);
User user = null;
if (managerUserVector != null) {
%>
<form name=form1 method="post" action="forumeditsubmit.do">
<INPUT type=hidden name=forumid value="<%=strForumid%>">
<table width="80%" border="1" align="center">
<tr>
<td align="right">
<A href="<%=request.getContextPath()%>/backtoadminindex.do">
首頁
</A>
<A href="adminlogoff.do">
注銷登錄
</A>
</td>
</tr>
<tr>
<td align="center">
修改論壇信息
</td>
</tr>
<tr>
<td align="center">
論壇名:
<INPUT size=15 name=forumname value="<%=forumname%>">
版主:
<select name=manager size=1>
<option value=""></option>
<%
for (int i = 0; i < managerUserVector.size(); i++) {
user = (User) managerUserVector.get(i);
%>
<option value="<%=user.getUsername()%>">
<%=user.getUsername()%>
</option>
<%
}
%>
</select>
<%
}
%>
<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 + -