1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
   |  
 
 
<%@ page language="java" pageEncoding="ISO-8859-1" contentType="text/html;charset=ISO-8859-1"%>
 
 
 
<%@ page import="java.util.*" %>
 
 
<%
// on récupère les valeurs nécessaire à l'affichage
 
 
ArrayList table2= (ArrayList)request.getAttribute("table2");
%>
 
<html>
<head>
<meta http-equiv="Content-Language" content="fr">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Liste users</title>
</head>
 
<body>
 
<table border="1" width="61%" id="table1">
	<tr>
		<td width="207">login</td>
 
	</tr>
 
<% for (int i=0;i<=table2.size()-1;i++){
out.print("<tr>"+
    "<td>"+table2.get(i)+"</td>"+ "</tr>");
}
%>
 
</table>
 
 
 
 
</body>
 
 
</html> | 
Partager