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

📄 levelinfo.jsp

📁 struts+hibernate BBS mysql数据库 功能基本齐全
💻 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 + -