1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
JEE_Project/web/WEB-INF/jsp/resultat.jsp
2022-06-27 21:14:35 +02:00

56 lines
1.8 KiB
Text

<%--
Document : resultat
Created on : 4 mars 2018, 20:29:48
Author : faycal
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Resultat</title>
</head>
<body>
<%@include file="header.jsp" %>
<table border="1" cellpadding="10">
<TR>
<c:forEach items="${colonnes}" var="col">
<TD>${col}</TD>
</c:forEach>
</TR>
<c:forEach items="${results}" var="values" varStatus="row" >
<TR>
<c:forEach items="${values}" var="v" >
<TD>${v}
</TD>
</c:forEach>
<TD>
<form name="Detail" action="detail.htm" method="POST">
<input type=hidden name="type" value="${type}"/>
<input type=hidden name="num" value="${list[row.index][0]}"/>
<input type=submit value="Détail" />
</form>
</TD>
</TR>
</c:forEach>
<%-- <c:forEach items="${liste}" var="client">
<TR>
<TD>${client.customerId}</TD>
<TD>${client.discountCode}</TD>
<TD>${client.zip}</TD>
<TD>${client.name}</TD>
</TR>
</c:forEach> --%>
</table>
</body>
</html>