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

📄 userlist.jsp

📁 某电子商品销售公司为了提升企业形象和商品销售量
💻 JSP
字号:
<%@ page language="java" import="java.util.*"
	pageEncoding="gbk"%>
<%
	
	List userList = (List) application.getAttribute("users");
	// Users user=(Users) session.getAttribute("users");
%>

<html>
<head>

<title>message</title>

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="refresh" content="3">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>

<body onload="scroll(0,9999)">
<table width="100%" border="0" align="left" cellpadding="0"
	cellspacing="0" bordercolor="#EBEBEB">
	<%
			for (int i = 0; i < userList.size(); i++) {
			String userName = (String) userList.get(i);
			
	%>


	<tr align="left">
		<td height="20"class="p16"><img src="../image/iboy.gif" />&nbsp;<%=userName%></td>
	</tr>	
	<%		
		}
	%>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -