-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnoticelistgrd.jsp
More file actions
24 lines (21 loc) · 886 Bytes
/
noticelistgrd.jsp
File metadata and controls
24 lines (21 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<c:if test="${totalcnt eq 0 }">
<tr>
<td colspan="5">데이터가 존재하지 않습니다.</td>
</tr>
</c:if>
<c:if test="${totalcnt > 0 }">
<c:forEach items="${noticesearchlist}" var="list">
<tr>
<td>${list.notice_no}</td>
<td><a href="javascript:fn_selectone('${list.notice_no}')">${list.notice_title}</a></td>
<td>${list.notice_date}</td>
<td>${list.name}</td>
<td>${list.notice_del_yn}</td>
</tr>
</c:forEach>
</c:if>
<input type="hidden" id="totalcnt" name="totalcnt" value ="${totalcnt}"/>