Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.69 KB | None | 0 0
  1. <%@ page contentType="text/html" pageEncoding="UTF-8"%>
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  3.  
  4. <html>
  5.     <head>
  6.         <title>Messages</title>
  7.     </head>
  8.     <body>
  9.  
  10.         <h1>Existing directories</h1>
  11.         <table border="1">
  12.             <thead>
  13.                 <td>Type</td><td>Nom</td>
  14.             </thead>
  15.             <tbody>
  16.             <c:forEach items="${directories}" var="directory">
  17.                 <tr>
  18.                     <td><c:out value="${directory['type']}"/></td>
  19.                     <td><c:out value="${directory['nom']}"/></td>
  20.                 </tr>
  21.             </c:forEach>
  22.             </tbody>
  23.         </table>
  24.  
  25.     </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement