?? levelinfo.jsp
字號:
?
+
<%@ page language="java" import="java.util.*" pageEncoding="gbk"%>
<%@ page import="com.elan.forum.model.Forumlevel"%>
<%
List<Forumlevel> list = (List) request.getAttribute("forumLevel");
%>
<html>
<head>
<title>論壇用戶等級管理</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
</head>
<body>
<table width='100%' border='1' cellspacing='1' cellpadding='0'>
<tr>
<td>
·您現在的位置:
</td>
</tr>
</table>
<table width='100%' border='1' cellpadding='0' cellspacing='1'
class='Border'>
<tr>
<td width='4%' align='center' nowrap class='top_item'>
<strong>ID</strong>
</td>
<td width='18%' align='center' nowrap class='top_item'>
<strong>等級名稱</strong>
</td>
<td width='11%' align='center' nowrap class='top_item'>
<strong>最少發帖</strong>
</td>
<td width='17%' align='center' nowrap class='top_item'>
<strong>等級圖片</strong>
</td>
<td width='8%' align='center' nowrap class='top_item'>
<strong>更新</strong>
</td>
<td width='23%' align='center' nowrap class='top_item'>
<strong>圖片預覽</strong>
</td>
<td width='6%' align='center' nowrap class='top_item'>
<strong>用戶數</strong>
</td>
<td width='13%' align='center' nowrap class='top_item'>
<strong>操作</strong>
</td>
</tr>
<%
for(int i = 0; i < list.size(); i++) {
Forumlevel fl = list.get(i);
%>
<tr class='td_25' onMouseOut="this.className='td_25'"
onMouseOver="this.className='MouseOver_25'">
<td align='center'>
1
</td>
<td align='center'>
<input name='LevelName' type='text' id='LevelName' value="<%=fl.getLevelName()%>"
size='20'>
</td>
<td align='center'>
<input name='LeastPost' type='text' id='LeastPost' value="<%=fl.getLeastPost() %>"
size='10' disabled>
</td>
<td align='center'>
<input name='PictrueURL' type='text' id='PictrueURL'
value="<%=fl.getPictrueUrl()%>" size='15'>
</td>
<td align='center'>
<input type='submit' name='Submit2' value='更新'>
</td>
<td>
<img src="<%=request.getContextPath()%>/forum/level/<%=fl.getPictrueUrl()%>" border='0' />
</td>
<td align='center'>
<strong><%=fl.getUserNum()%></strong>
</td>
<td align='center' nowrap>
<span class=graytext>刪除</span> |
<a href=>用戶列表</a>
</td>
</tr>
<%
}
%>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -