notice.jsp~8~

来自「用户的注册 用户的登陆 发布用户的相关信息 浏览网站介绍的其他酒店的」· JSP~8~ 代码 · 共 142 行

JSP~8~
142
字号
<%@page contentType="text/html; charset=gb2312"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<title>系统公告管理</title>
<link href="css/hotel.css" rel="stylesheet">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
  <!--
    .STYLE4 {font-size: 24px}
  -->
</style>
</head>
<body bgcolor="#ffffff">
<table width="760" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td>
      <jsp:include page="top.jsp"/>
    </td>
  </tr>
  <tr>
    <td>
      <table width="760" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td height="13" colspan="3">&nbsp;</td>
        </tr>
        <tr>
          <td width="2" height="24">&nbsp;</td>
          <td width="756" background="images/03.gif">&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
        <tr>
          <td height="10" colspan="3">&nbsp;</td>
        </tr>
        <tr>
          <td colspan="3">
            <table width="760" border="0" cellpadding="0" cellspacing="0">
              <tr>
                <td width="2">&nbsp;</td>
                <td>
                  <table width="756" border="0" cellpadding="0" cellspacing="0">
                    <tr>
                      <td width="207" height="360" valign="top" background="images/06.gif">
                        <table width="100%" border="0" cellpadding="0" cellspacing="0">
                          <tr>
                            <td height="65">&nbsp;</td>
                          </tr>
                          <tr>
                            <td height="26" align="center">
                              <a href="ManagerPassWord.jsp">修改密码</a>
                            </td>
                          </tr>
                          <tr>
                            <td height="40" align="center">
                              <a href="noticeservlet">发布公告</a>
                            </td>
                          </tr>
                          <tr>
                            <td height="35" align="center">友情连接</td>
                          </tr>
                          <tr>
                            <td height="35" align="center">用户管理</td>
                          </tr>
                          <tr>
                            <td height="40" align="center">企业管理</td>
                          </tr>
                          <tr>
                            <td height="35" align="center">
                              <a href="exitservlet">退出系统</a>
                            </td>
                          </tr>
                          <tr>
                            <td height="46">&nbsp;</td>
                          </tr>
                        </table>
                      </td>
                      <td valign="top">
                        <table width="100%" border="0" cellpadding="0" cellspacing="0">
                          <tr>
                            <td height="60" colspan="3" align="center">
                              <span class="STYLE4">系统公告管理</span>
                            </td>
                          </tr>
                          <tr>
                            <td width="8" height="236" valign="top">&nbsp;</td>
                            <td width="534" valign="top">
                              <form name="form1" method="post" action="">
                              <table width="100%" border="0" cellpadding="0" class="tableBorder_LTR_dashed" cellspacing="0">
                                <tr>
                                  <td width="20%" height="26" align="center">公告名称</td>
                                  <td width="20%" align="center">标题</td>
                                  <td width="20%" align="center">删除</td>
                                  <td width="20%" align="center">修改</td>
                                  <td align="center">添加</td>
                                </tr>
                                <c:if test="${requestScope.notice}!=null">
                                  <c:forEach var="notice" items="${requestScope.notice}">
                                    <tr>
                                      <td height="26">${notice.notice_id}                                      </td>
                                      <td height="26">${notice.notice_title}                                      </td>
                                      <td height="26" align="center">
                                        <img src="images/del.gif" width="16" height="16">
                                      </td>
                                      <td height="26" align="center">
                                        <img src="images/modify.gif" width="15" height="15">
                                      </td>
                                      <td height="26" align="center">&nbsp;</td>
                                    </tr>
                                  </c:forEach>
                                </c:if>
                                <tr><td>没有任何记录</td></tr>
                                </tr>
                                <tr>
                                  <td height="26" colspan="5">${requestScope.str}                                  </td>
                                </tr>
                              </table>
                              </form>
                            </td>
                            <td width="7" valign="top">&nbsp;</td>
                          </tr>
                        </table>
                      </td>
                    </tr>
                  </table>
                </td>
                <td width="2">&nbsp;</td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
    </td>
  </tr>
  <tr>
    <td>
      <jsp:include page="Copyright.jsp"/>
    </td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?