Posted on 2009-05-22 22:18
為自己代言 閱讀(1865)
評論(0) 編輯 收藏
<%@include file="/common/taglib.jsp"%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>網站后臺管理系統</title>
<%@include file="/common/metadata.jsp"%>
<link href="${ctx}/admin/style/css_body.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
function del(id){
if(confirm("您確認要刪除該項嗎?")){
document.location.href="${ctx}/NewsManage?action=deleteNews&id="+id;
}else{
return;
}
}
function pagging(pageNo){
document.location.href="${ctx}/MemeberRegisterServlet?action=list&pageNo="+pageNo;
}
</script>
</head>
<body>
<div class="bodytitle">
<div>
<span class="bodytitletxt">新聞列表</span>
</div>
</div>
<div class="list-div">
<table border="0" cellpadding="10" cellspacing="1">
<tr>
<td align="center"><a href="${ctx}/NewsManage?action=refresh">刷新新聞列表</a></td>
</tr>
</table>
<table border="0" cellpadding="10" cellspacing="1">
<tr>
<th>新聞編號</th>
<th>新聞名稱</th>
<th>發布者</th>
<th>發布時間</th>
<th>修改時間</th>
<th>瀏覽次數</th>
<th>操作</th>
</tr>
<c:forEach items="${newsList}" var="news">
<tr>
<td align="center">${news.id}</td>
<td align="center"><a href="${ctx}/BrowerNewsServlet?action=browerNews&id=${news.id}">${news.topic}</a></td>
<td align="center">${news.publishuser}</td>
<td align="center">${news.publishtimes}</td>
<td align="center">${news.modifytimes}</td>
<td align="center">${news.hits}</td>
<td align="center">
<a href="${ctx}/NewsManage?action=modifyNews&id=${news.id}"><img src="${ctx}/icons/icon_edit.gif"></a>
|
<a href="javascript:del(${news.id})"><img src="${ctx}/icons/icon_drop.gif"></a>
</td>
</tr>
</c:forEach>
<tr>
<td align="right" bgcolor="#f9ffe6" colspan="7"><%@include file="/common/paggingDiv.jsp" %></td>
</tr>
</table>
</div>
<div id="footer"><br />版權所有 © 2005-2008 Onest's Studio 工作室,并保留所有權利。</div>
</body>
</html>