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

📄 showallusers.jsp

📁 java带进度条上传尽量不要让站长把时间都花费在为您修正说明上
💻 JSP
字号:
  <%@ page language="java" pageEncoding="gb2312"%>
<%@page import="java.util.List"%>

<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
  <head>
    <html:base />
    
    <title>showAllUsers.jsp</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">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  
  <body>
  	<center>
  		<font color="red" size="5">请选择用户</font>
  		<table border="1">
  			<Tr><td>用户ID</td><td>用户名</td></Tr>
  			<logic:iterate id="uvo" name="list" type="com.jmwl.vo.UsersLoginVO">
  			<tr><td><bean:write name="uvo" property="u_id"/></td><td><a href="<%=basePath %>photoAdmin.do?method=getOnePhotos&userid=<%=uvo.getU_id() %>"><bean:write name="uvo" property="login_name"/></a></td></tr>
  			</logic:iterate>
  		</table>
  	</center>
  	
  
  </body>
</html:html>

⌨️ 快捷键说明

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