📄 bulletinlist.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<style>
<!--
.wr{font-size: 12pt; line-height: 22px}
.wr1 { FONT-SIZE: 12px; LINE-HEIGHT: 200%}
.wr2 { FONT-SIZE: 14px; LINE-HEIGHT: 200%}
.wr3 { FONT-SIZE: 12px}
.wr4 { FONT-SIZE: 12px; LINE-HEIGHT: 150%}
// -->
</style>
<title>清韵网上书店后台管理系统</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script type="text/javascript">
function isdel(){
return window.confirm("确定要删除吗?");
}
</script>
</head>
<body bgcolor="#FFFFDB" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="650" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="50">
</td>
<td>
<a href="${pageContext.request.contextPath }/background/saveBulletin.jsp" style="text-decoration:none"><font color="#666666" size="2px"><b>添加新的公告 </b></font></a>
</td>
</tr>
<tr>
<td width="50"> </td>
<td class="wr4">
<div align="center"><b>公告信息列表</b></div>
</td>
</tr>
<tr>
<td width="50"> </td>
<td>
<table width="600" border="0" cellspacing="1" cellpadding="3" bgcolor="#000000">
<tr bgcolor="#FFFFDB" align="center">
<td class="wr4" width="35">序号</td>
<td class="wr4" width="98">公告标题</td>
<td class="wr4" width="98">发布时间</td>
<td class="wr4" width="77" align="center">修改</td>
<td class="wr4" width="77" align="center">删除</td>
<td class="wr4" width="77" align="center">状态</td>
</tr>
<c:forEach items="${requestScope.news}" var="new">
<tr bgcolor="#FFFFDB" onmouseover="this.style.backgroundColor='#eeeeee';" onmouseout="this.style.backgroundColor='#FFFFDB'" >
<td class="wr4" width="35">${new.newsId }</td>
<td class="wr4" width="98">${new.newsTitle }</td>
<td class="wr4" width="98">${new.newsTime }</td>
<td class="wr4" width="77" align="center"><a href="${pageContext.request.contextPath }/findBulletin.do?id=${new.newsId }" style="text-decoration:none">修改</a></td>
<td class="wr4" width="77" align="center"><a href="${pageContext.request.contextPath }/delBulletin.do?id=${new.newsId }" onclick="return isdel()" style="text-decoration:none">删除</a></td>
<td class="wr4" width="77" align="center"><a href="${pageContext.request.contextPath }/editType.do?id=${new.newsId }&type=${new.newsHide }" style="text-decoration:none">${new.newsHide==0?'<font color="green">点击发布</font>':'<font color="red">停止发布</font' }</a></td>
</tr>
</c:forEach>
<tr bgcolor="#FFFFDB">
<td class="wr4" colspan="6">
<div align="right">01 02 03 04 05 06 07 08 09 10 >>></div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
<script ></script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -