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