main.jsp 580 B

1234567891011121314151617181920212223
  1. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  2. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta charset="EUC-KR">
  7. <title>Insert title here</title>
  8. </head>
  9. <body>
  10. <h3>${id} 님 안녕하세요</h3>
  11. <p>MEMBER LIST</p>
  12. <ul>
  13. <c:forEach var="al" items="${allData}">
  14. <li>
  15. <p>아이디 : <c:out value="${al.ID}"/> | 이름 : <c:out value="${al.NAME}"/></p>
  16. </li>
  17. </c:forEach>
  18. </ul>
  19. <button type="button" onclick="location.href='/test1';">Logout</button>
  20. </body>
  21. </html>