admin/member/list.jsp
페이지 정보
본문
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ include file="/admin/include/header.jsp" %>
<table width=100% height=50 border=0>
<tr>
<td align=center style="color:#777;font-size:14px;font-weight:bold;">[회원관리]</td>
</tr>
</table>
<style>
.td_title{
text-align:center;
font-weight:bold;
}
</style>
<script>
var popupX = (window.screen.width / 2) - (560 / 2);
var popupY= (window.screen.height /2) - (400 / 2);
function popup(str){
window.open("view?id="+str,"view","width=560,height=400,left="+popupX+",top="+popupY);
}
</script>
<center>
<table width=700 border=0 align=center>
<tr bgcolor="#e5ecef" height="30">
<td class="td_title">아이디</td>
<td class="td_title">이름</td>
<td class="td_title">나이</td>
<td class="td_title">성별</td>
<td class="td_title">메일주소</td>
<td class="td_title">레벨</td>
<td class="td_title">Mode</td>
</tr>
<c:forEach var="list" items="${v }">
<tr height="24">
<td align="center">${list.id }</td>
<td align="center">${list.name }</td>
<td align="center">${list.age }</td>
<td align="center">${list.gender }</td>
<td align="center">${list.email }</td>
<td align="center">${list.level }</td>
<td align="center">
<span onclick="popup('${list.id }')" style="cursor:pointer">[상세]</span>
</td>
</tr>
<tr><td colspan=7 height=1 bgcolor="#e5ecef"></td></tr>
</c:forEach>
</table>
</center>
<br>
<%@ include file="/admin/include/footer.jsp" %>
- 이전글admin/include/header_popup.jsp ( 팝업 페이지 ) 23.03.18
- 다음글admin/member/view.jsp ( 개행 처리 , 팝업 처리 ) 23.03.18
댓글목록
등록된 댓글이 없습니다.